diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a95fa5e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +main.cpp +main.cpp diff --git a/.vscode/settings.json b/.vscode/settings.json index ee15787..12475e8 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -102,6 +102,9 @@ "ostream": "cpp", "stdexcept": "cpp", "streambuf": "cpp", - "typeinfo": "cpp" - } + "typeinfo": "cpp", + "fstream": "cpp", + "sstream": "cpp" + }, + "cmake.sourceDirectory": "a:/workspace/special-broccoli/app" } \ No newline at end of file diff --git a/Championnat.h b/Championnat.h new file mode 100644 index 0000000..94ac112 --- /dev/null +++ b/Championnat.h @@ -0,0 +1,45 @@ +#ifndef CHAMPIONNAT_H +#define CHAMPIONNAT_H + +#include "Joueur.h" +#include "Ticket.h" +#include "Partie.h" +#include "Tennis.h" + +#include +#include + +class Championnat { + +private: + string nom; // Declare the members + int annee; + int nbTours; + TennisChampionship* tennisChampionship; // Declare tennisChampionship as a member + vector joueursInscrits; // Add a vector to store the players + +public: + std::vector joueursInscrits; // Enrolled players + std::vector parties; // Played matches + std::vector tickets; // Tickets sold + + // Constructor + Championnat::Championnat(const string& nom, int annee, int nbTours); + + // Method to add players to the tournament + void inscrireJoueur(const Joueur& joueur); + + // Method to get the list of enrolled players + const std::vector& getJoueursInscrits() const; + + // Getters and Setters + string getNom() const { return nom; } + int getAnnee() const { return annee; } + int getNbTours() const { return nbTours; } + TennisChampionship* getTennisChampionship() const { return tennisChampionship; } // Getter for tennisChampionship + void setNom(const string& nom) { this->nom = nom; } + void setAnnee(int annee) { this->annee = annee; } + void setNbTours(int nbTours) { this->nbTours = nbTours; } +}; + +#endif \ No newline at end of file diff --git a/Championnat.hpp b/Championnat.hpp new file mode 100644 index 0000000..5188c81 --- /dev/null +++ b/Championnat.hpp @@ -0,0 +1,14 @@ +#include "Championnat.h" + +Championnat::Championnat(const string& nom, int annee, int nbTours) + : nom(nom), annee(annee), nbTours(nbTours), tennisChampionship(new TennisChampionship()) {} // Initialize tennisChampionship in the initializer list + +// Method to add players to the tournament +void Championnat::inscrireJoueur(const Joueur& joueur) { + joueursInscrits.push_back(joueur); +} + +// Method to get the list of enrolled players +const std::vector& Championnat::getJoueursInscrits() const { + return joueursInscrits; +} diff --git a/Client.h b/Client.h new file mode 100644 index 0000000..aae62f3 --- /dev/null +++ b/Client.h @@ -0,0 +1,41 @@ +#ifndef CLIENTS_H +#define CLIENTS_H + +#include +#include +#include + +#include "Ticket.h" + +class Client +{ +public: + Client(const std::string &nom, int age, const std::string &adresse, const std::string &telephone); + + // Getters + std::string getNom() const; + int getAge() const; + std::string getAdresse() const; + std::string getTelephone() const; + + // Setters + int setNom(const std::string &nom); + int setAge(int age); + int setAdresse(const std::string &adresse); + int setTelephone(const std::string &telephone); + + // Add a ticket to the client's list + void addTicket(Ticket *ticket); + + // Display client information + void afficher() const; + +private: + std::string nom; + int age; + std::string adresse; + std::string telephone; + std::vector tickets; +}; + +#endif \ No newline at end of file diff --git a/Client.hpp b/Client.hpp new file mode 100644 index 0000000..1ab979f --- /dev/null +++ b/Client.hpp @@ -0,0 +1,65 @@ + +#include "Client.h" +#include + +Client::Client(const std::string &nom, int age, const std::string &adresse, const std::string &telephone) + : nom(nom), age(age), adresse(adresse), telephone(telephone) {} + +// Getters +string Client::getNom() const { return nom; } +int Client::getAge() const { return age; } +string Client::getAdresse() const { return adresse; } +string Client::getTelephone() const { return telephone; } + +// Setters +int Client::setNom(const string &nom) +{ + this->nom = nom; + return 0; // Success +} + +int Client::setAge(int age) +{ + if (age > 0) + { + this->age = age; + return 0; // Success + } + else + { + return 1; // Error: Invalid age + } +} + +int Client::setAdresse(const string &adresse) +{ + this->adresse = adresse; + return 0; // Success +} + +int Client::setTelephone(const string &telephone) +{ + this->telephone = telephone; + return 0; // Success +} + +// Add a ticket to the client's list +void Client::addTicket(Ticket *ticket) +{ + tickets.push_back(ticket); +} + +// Display client information +void Client::afficher() const +{ + cout << "Nom: " << nom << endl; + cout << "Age: " << age << endl; + cout << "Adresse: " << adresse << endl; + cout << "Telephone: " << telephone << endl; + cout << "Tickets:" << endl; + for (const Ticket *ticket : tickets) + { + ticket->afficher(); + } + cout << endl; +} diff --git a/DataManager.h b/DataManager.h new file mode 100644 index 0000000..33b90de --- /dev/null +++ b/DataManager.h @@ -0,0 +1,48 @@ +#ifndef DATAMANAGER_H +#define DATAMANAGER_H + +#include +#include +#include + +#include "Reservation.h" +#include "Joueur.h" +#include "Partie.h" +#include "Score.h" +#include "Paiements.h" + +class DataManager +{ +public: + // Constructor + DataManager(); + + // Destructor + ~DataManager(); + + // Methods for saving and loading data + void sauvegarderReservations(const std::string &filename, const std::vector &reservations) const; + void chargerReservations(const std::string &filename, std::vector &reservations); + + void sauvegarderJoueurs(const std::string &filename, const std::vector &joueurs) const; + void chargerJoueurs(const std::string &filename, std::vector &joueurs); + + void sauvegarderParties(const std::string &filename, const std::vector &parties) const; + void chargerParties(const std::string &filename, std::vector &parties); + + void sauvegarderScores(const std::string &filename, const std::vector &scores) const; + void chargerScores(const std::string &filename, std::vector &scores); + + + +private: + // Helper function to save data to a file + template + void sauvegarderDonnees(const std::string &filename, const std::vector &data) const; + + // Helper function to load data from a file + template + void chargerDonnees(const std::string &filename, std::vector &data); +}; + +#endif // DATAMANAGER_H diff --git a/DataManager.hpp b/DataManager.hpp new file mode 100644 index 0000000..158b57b --- /dev/null +++ b/DataManager.hpp @@ -0,0 +1,107 @@ +#include "DataManager.h" + +static void saveReservations(const std::vector &reservations, const std::string &filename) +{ + std::ofstream outFile(filename, std::ios::out | std::ios::binary); + if (outFile.is_open()) + { + for (const auto &res : reservations) + { + outFile.write((char *)&res, sizeof(res)); + } + outFile.close(); + } + else + { + std::cerr << "Unable to open file for writing: " << filename << std::endl; + } +} + +static std::vector loadReservations(const std::string &filename) +{ + std::vector reservations; + std::ifstream inFile(filename, std::ios::in | std::ios::binary); + if (inFile.is_open()) + { + Reservation res; + while (inFile.read((char *)&res, sizeof(res))) + { + reservations.push_back(res); + } + inFile.close(); + } + else + { + std::cerr << "Unable to open file for reading: " << filename << std::endl; + } + return reservations; +} +static void saveJoueurs(const std::vector &joueurs, const std::string &filename) +{ + std::ofstream outFile(filename, std::ios::out | std::ios::binary); + if (outFile.is_open()) + { + for (const auto &joueur : joueurs) + { + outFile.write((char *)&joueur, sizeof(joueur)); + } + outFile.close(); + } + else + { + std::cerr << "Unable to open file for writing: " << filename << std::endl; + } +} + +static std::vector loadJoueurs(const std::string &filename) +{ + std::vector joueurs; + std::ifstream inFile(filename, std::ios::in | std::ios::binary); + if (inFile.is_open()) + { + Joueur joueur; + while (inFile.read((char *)&joueur, sizeof(joueur))) + { + joueurs.push_back(joueur); + } + inFile.close(); + } + else + { + std::cerr << "Unable to open file for reading: " << filename << std::endl; + } + return joueurs; +} + +static void saveParties(const std::vector &parties, const std::string &filename) +{ + std::ofstream outFile(filename, std::ios::out | std::ios::binary); + if (outFile.is_open()) + { + for (const auto &partie : parties) + { + outFile.write((char *)&partie, sizeof(partie)); + } + outFile.close(); + } + else + { + std::cerr << "Unable to open file for writing: " << filename << std::endl; + } +} + +static std::vector loadParties(const std::string &filename) +{ + std::vector parties; + std::ifstream inFile(filename, std::ios::in | std::ios::binary); + if (inFile.is_open()) + { + Partie partie; + while (inFile.read((char *)&partie, sizeof(partie))) + { + parties.push_back(partie); + } + inFile.close(); + } + std::cerr << "Unable to open file for writing: " << filename << std::endl; +} diff --git a/GestionClients.h b/GestionClients.h new file mode 100644 index 0000000..93a8fbe --- /dev/null +++ b/GestionClients.h @@ -0,0 +1,38 @@ +#ifndef GESTIONCLIENTS_H +#define GESTIONCLIENTS_H + + +#include "client.h" +#include +#include +#include + +class GestionClients +{ +public: + // Constructor + GestionClients() {} + + // Add a client + void ajouterClient(const Client &client); + + // Remove a client + bool supprimerClient(const std::string &nom); + + // Search for a client + Client *rechercherClient(const std::string &nom) const; + + // Display all clients + void afficherClients() const; + + // Sort clients by name + void trierClientsParNom(); + + // Get the list of clients + const std::vector &getClients() const; + +private: + std::vector clients; +}; + +#endif \ No newline at end of file diff --git a/GestionClients.hpp b/GestionClients.hpp new file mode 100644 index 0000000..e0910bc --- /dev/null +++ b/GestionClients.hpp @@ -0,0 +1,50 @@ +#include "Client.h" +#include "GestionClients.h" + +// Add a client +void GestionClients::ajouterClient(const Client &client) { + clients.push_back(client); +} + +// Remove a client +bool GestionClients::supprimerClient(const std::string &nom) { + auto it = std::find_if(clients.begin(), clients.end(), + [&nom](const Client &client) { + return client.getNom() == nom; + }); + if (it != clients.end()) { + clients.erase(it); + return true; // Success + } + return false; // Client not found +} + +// Search for a client +Client *GestionClients::rechercherClient(const std::string &nom) const { + for (const Client &client : clients) { + if (client.getNom().find(nom) != std::string::npos) { + return const_cast(&client); + } + } + return nullptr; +} + +// Display all clients +void GestionClients::afficherClients() const { + for (const Client &client : clients) { + client.afficher(); + } +} + +// Sort clients by name +void GestionClients::trierClientsParNom() { + std::sort(clients.begin(), clients.end(), + [](const Client &a, const Client &b) { + return a.getNom() < b.getNom(); + }); +} + +// Get the list of clients +const std::vector &GestionClients::getClients() const { + return clients; +} diff --git a/GestionJoueurs.h b/GestionJoueurs.h new file mode 100644 index 0000000..a17db47 --- /dev/null +++ b/GestionJoueurs.h @@ -0,0 +1,31 @@ +#ifndef GESTIONJOUEURS_H +#define GESTIONJOUEURS_H + +#include +#include +#include "Joueur.h" + +class GestionJoueurs { +private: + std::vector joueurs; + +public: + GestionJoueurs(); + + // Accessors + const std::vector& getJoueurs() const; + + // Methods for managing players + void afficherJoueurs(); + void ajouterJoueur(const Joueur& joueur); + bool supprimerJoueur(const std::string& nom); + Joueur* rechercherJoueur(const std::string& nom); + void trierJoueursParClassement(); + void modifierJoueur(Joueur& joueur); + + // Methods to update wins and losses + void updateWin(const std::string& playerName); + void updateLoss(const std::string& playerName); +}; + +#endif \ No newline at end of file diff --git a/GestionJoueurs.hpp b/GestionJoueurs.hpp new file mode 100644 index 0000000..0d43b9f --- /dev/null +++ b/GestionJoueurs.hpp @@ -0,0 +1,101 @@ +#include "GestionJoueurs.h" +#include +#include + + +// Default constructor +GestionJoueurs::GestionJoueurs() {} + +// Accessor for players list +const std::vector& GestionJoueurs::getJoueurs() const { + return joueurs; +} + +// Display players in GestionJoueurs +void GestionJoueurs::afficherJoueurs() { + if (joueurs.empty()) { + cout << "No players found." << endl; + return; + } + for (const Joueur& joueur : joueurs) { + cout << "Name: " << joueur.getNom() << endl; + cout << "Ranking: " << joueur.getClassement() << endl; + cout << "Wins: " << joueur.getNbVictoires() << endl; + cout << "Losses: " << joueur.getNbDefaites() << endl; + cout << endl; + } +} + +// Add a player to GestionJoueurs +void GestionJoueurs::ajouterJoueur(const Joueur& joueur) { + if (joueur.getNom().empty()) { + throw std::invalid_argument("Player name cannot be empty."); + } + for (const Joueur& j : joueurs) { + if (j.getNom() == joueur.getNom()) { + throw std::invalid_argument("Player already exists."); + } + } + joueurs.push_back(joueur); +} + +// Remove a player from GestionJoueurs +bool GestionJoueurs::supprimerJoueur(const std::string& nom) { + auto it = std::remove_if(joueurs.begin(), joueurs.end(), + [&nom](const Joueur& joueur) { return joueur.getNom() == nom; }); + if (it != joueurs.end()) { + joueurs.erase(it, joueurs.end()); + return true; + } + return false; +} + +// Search for a player in GestionJoueurs +Joueur* GestionJoueurs::rechercherJoueur(const std::string& nom) { + for (Joueur& joueur : joueurs) { + if (joueur.getNom() == nom) { + return &joueur; + } + } + return nullptr; +} + +// Sort players in GestionJoueurs by ranking +void GestionJoueurs::trierJoueursParClassement() { + std::sort(joueurs.begin(), joueurs.end(), [](const Joueur& joueur1, const Joueur& joueur2) { + return joueur1.getClassement() > joueur2.getClassement(); + }); +} + +// Modify a player's information in GestionJoueurs +void GestionJoueurs::modifierJoueur(Joueur& joueur) { + for (Joueur& j : joueurs) { + if (j.getNom() == joueur.getNom()) { + j.setNom(joueur.getNom()); + j.setClassement(joueur.getClassement()); + j.setNbVictoires(joueur.getNbVictoires()); + j.setNbDefaites(joueur.getNbDefaites()); + return; + } + } +} + +// Update win count for a player in GestionJoueurs +void GestionJoueurs::updateWin(const std::string& playerName) { + for (Joueur& joueur : joueurs) { + if (joueur.getNom() == playerName) { + joueur.incrementerVictoire(); + return; + } + } +} + +// Update loss count for a player in GestionJoueurs +void GestionJoueurs::updateLoss(const std::string& playerName) { + for (Joueur& joueur : joueurs) { + if (joueur.getNom() == playerName) { + joueur.incrementerDefaite(); + return; + } + } +} diff --git a/GestionParties.h b/GestionParties.h new file mode 100644 index 0000000..92eb56b --- /dev/null +++ b/GestionParties.h @@ -0,0 +1,29 @@ +#ifndef GESTION_PARTIES.H +#define GESTION_PARTIES.H + +#include "Partie.h" +#include +#include + +class GestionParties { +public: + GestionParties(); + std::vector getParties(); + std::vector getPreviousRoundMatches(); + bool isPartieFromPreviousRound(Partie partie); + int getPreviousRoundMaxMatchNumber() const; + void setPreviousRoundMaxMatchNumber(int newMax); + void setParties(std::vector parties); + void ajouterPartie(Partie partie); + void afficherParties(); + void supprimerPartie(TypePartie type, std::string nomJoueur1, std::string nomJoueur2); + Partie* rechercherPartie(const std::string& nomJoueur1, const std::string& nomJoueur2); + void setMatchResult(int numero, const std::string& winnerName); + +private: + std::vector parties; + std::map, Partie*> partiesMap; + int previousRoundMaxMatchNumber; +}; + +#endif \ No newline at end of file diff --git a/GestionParties.hpp b/GestionParties.hpp new file mode 100644 index 0000000..cb6a45f --- /dev/null +++ b/GestionParties.hpp @@ -0,0 +1,91 @@ +#include "partie.h" + +// GestionParties implementation +GestionParties::GestionParties() {} + +// Get the list of matches +vector GestionParties::getParties() { + return parties; +} + +// Get the list of matches from the previous round +vector GestionParties::getPreviousRoundMatches() { + vector previousRoundMatches; + for (const Partie& partie : parties) { + if (partie.getNumero() <= previousRoundMaxMatchNumber) { + previousRoundMatches.push_back(partie); + } + } + return previousRoundMatches; +} + +// Check if a match is from the previous round +bool GestionParties::isPartieFromPreviousRound(Partie partie) { + return partie.getNumero() <= previousRoundMaxMatchNumber; +} + +// Get the maximum match number from the previous round +int GestionParties::getPreviousRoundMaxMatchNumber() const { + return previousRoundMaxMatchNumber; +} + +// Set the maximum match number from the previous round +void GestionParties::setPreviousRoundMaxMatchNumber(int newMax) { + previousRoundMaxMatchNumber = newMax; +} + +// Set the list of matches +void GestionParties::setParties(vector parties) { + this->parties = parties; +} + +// Add a match +void GestionParties::ajouterPartie(Partie partie) { + parties.push_back(partie); + partiesMap[make_pair(partie.getNomJoueur1(), partie.getNomJoueur2())] = &partie; + partiesMap[make_pair(partie.getNomJoueur2(), partie.getNomJoueur1())] = &partie; +} + +// Display all matches +void GestionParties::afficherParties() { + for (Partie partie : parties) { + partie.afficher(); + cout << endl; + } +} + +void GestionParties::supprimerPartie(TypePartie type, string nomJoueur1, string nomJoueur2) { + parties.erase( + std::remove_if(parties.begin(), parties.end(), + [type, nomJoueur1, nomJoueur2](const Partie& partie) { + return partie.getType() == type && partie.getNomJoueur1() == nomJoueur1 && partie.getNomJoueur2() == nomJoueur2; + }), + parties.end() + ); +} + + +// Function to retrieve a Partie by player names +Partie* GestionParties::rechercherPartie(const string& nomJoueur1, const string& nomJoueur2) { + auto it = partiesMap.find(make_pair(nomJoueur1, nomJoueur2)); + if (it != partiesMap.end()) { + return it->second; + } + return nullptr; +} + + +void GestionParties::setMatchResult(int numero, const std::string& winnerName) { + for (int i = 0; i < parties.size(); i++) { + if (parties[i].getNumero() == numero) { + if (parties[i].getNomJoueur1() == winnerName) { + parties[i].setResultat(parties[i].getNomJoueur1(), 1); + parties[i].setResultat(parties[i].getNomJoueur2(), 2); + } else if (parties[i].getNomJoueur2() == winnerName) { + parties[i].setResultat(parties[i].getNomJoueur2(), 1); + parties[i].setResultat(parties[i].getNomJoueur1(), 2); + } + break; + } + } +} diff --git a/GestionPlaces.h b/GestionPlaces.h new file mode 100644 index 0000000..f519102 --- /dev/null +++ b/GestionPlaces.h @@ -0,0 +1,27 @@ +#ifndef GESTION_PLACES.H +#define GESTION_PLACES.H + +#include "Place.h" + +#include +#include + +class GestionPlaces { +public: + // Add a place + void ajouterPlace(Place* place); + + // Get the list of places + const vector& getPlaces() const; + + // Search for a place (example: search by type) + Place* rechercherPlace(const string& type) const; + + // Display all places + void afficherPlaces() const; + +private: + vector places; +}; + +#endif \ No newline at end of file diff --git a/GestionPlaces.hpp b/GestionPlaces.hpp new file mode 100644 index 0000000..e88778f --- /dev/null +++ b/GestionPlaces.hpp @@ -0,0 +1,39 @@ +#include "GestionPlaces.h" +#include +#include +#include + +// Add a place +void GestionPlaces::ajouterPlace(Place *place) +{ + places.push_back(place); +} + +// Get the list of places +const vector &getPlaces() const +{ + return places; +} + +// Search for a place (example: search by type) +GestionPlaces *rechercherPlace(const string &type) const +{ + for (Place *place : places) + { + if (place->getType() == type) + { + return place; + } + } + return nullptr; +} + +// Display all places +void afficherPlaces() const +{ + for (Place *place : places) + { + place->afficher(); + cout << endl; + } +} diff --git a/GestionReservations.h b/GestionReservations.h new file mode 100644 index 0000000..add8875 --- /dev/null +++ b/GestionReservations.h @@ -0,0 +1,36 @@ +#ifndef GESTION_RESERVATIONS.H +#define GESTION_RESERVATIONS.H + +#include +#include "Reservation.h" +#include "Client.h" +#include "Partie.h" + +class GestionReservations { +private: + std::vector reservations; + +public: + // Constructor + GestionReservations() {} + + // Add a reservation + void ajouterReservation(const Reservation& reservation); + + // Remove a reservation + void supprimerReservation(Client* client, Partie* partie, int row, int col); + + // Search for a reservation + Reservation* rechercherReservation(Client* client, Partie* partie, int row, int col); + + // Display all reservations + void afficherReservations() const; + + // Get the list of reservations + const std::vector& getReservations() const; + + // Sort reservations by client name + void trierReservationsParClient(); +}; + +#endif \ No newline at end of file diff --git a/GestionReservations.hpp b/GestionReservations.hpp new file mode 100644 index 0000000..5760f59 --- /dev/null +++ b/GestionReservations.hpp @@ -0,0 +1,47 @@ +// Add a reservation +void GestionReservations::ajouterReservation(const Reservation& reservation) { + reservations.push_back(reservation); +} + + void GestionReservations::supprimerReservation(Client* client, Partie* partie, int row, int col) { + auto it = std::find_if(reservations.begin(), reservations.end(), + [&client, &partie, row, col](const Reservation& res) { + return res.getClient() == client && res.getPartie() == partie && res.getRow() == row && res.getCol() == col; + }); + if (it != reservations.end()) { + // Release the seat in the Terrain + it->getTerrain()->releaseSeat(row, col); + reservations.erase(it); + } + } + + // Search for a reservation + Reservation* GestionReservations::rechercherReservation(Client* client, Partie* partie, int row, int col) { + auto it = std::find_if(reservations.begin(), reservations.end(), + [&client, &partie, row, col](const Reservation& res) { + return res.getClient() == client && res.getPartie() == partie && res.getRow() == row && res.getCol() == col; + }); + if (it != reservations.end()) { + return &(*it); // Return a pointer to the found Reservation + } + return nullptr; + } +// Display all reservations +void GestionReservations::afficherReservations() const { + for (const auto& reservation : reservations) { + reservation.afficher(); + cout << endl; + } +} + +// Get the list of reservations +const vector& GestionReservations::getReservations() const { + return reservations; +} + +// Sort reservations by client name +void GestionReservations::trierReservationsParClient() { + sort(reservations.begin(), reservations.end(), [](const Reservation& a, const Reservation& b) { + return a.getClient()->getNom() < b.getClient()->getNom(); + }); +} diff --git a/GestionScores.h b/GestionScores.h new file mode 100644 index 0000000..775fe34 --- /dev/null +++ b/GestionScores.h @@ -0,0 +1,25 @@ +#ifndef GESTION_SCORES_H +#define GESTION_SCORES_H + +#include +#include "Score.h" +#include "Partie.h" + + +class GestionScores { +public: + GestionScores(); // Constructor + + void ajouterScore(const Score& score); // Add a score + void supprimerScore(int numero); // Remove a score + void mettreAJourScore(int numero, int scoreJoueur1, int scoreJoueur2, GestionJoueurs& gestionJoueurs); // Update a score + void afficherScores() const; // Display all scores + std::vector getTopScores(int numScoresToDisplay); // Display Top Scorers + +private: + std::vector scores; + std::map scoresMap; +}; + + +#endif // GESTION_SCORES_H diff --git a/GestionScores.hpp b/GestionScores.hpp new file mode 100644 index 0000000..c882537 --- /dev/null +++ b/GestionScores.hpp @@ -0,0 +1,60 @@ + +// Add a score +void GestionScores::ajouterScore(const Score& score) { + scores.push_back(score); + scoresMap[score.getPartie().getNumero()] = &scores.back(); +} + +// Remove a score +void GestionScores::supprimerScore(int numero) { + auto it = scoresMap.find(numero); + if (it != scoresMap.end()) { + scores.erase(std::remove(scores.begin(), scores.end(), *(it->second)), scores.end()); + scoresMap.erase(it); + } +} + +// Update a score +void GestionScores::mettreAJourScore(int numero, int scoreJoueur1, int scoreJoueur2, GestionJoueurs& gestionJoueurs) { + auto it = scoresMap.find(numero); + if (it != scoresMap.end()) { + it->second->setScoreJoueur1(scoreJoueur1); + it->second->setScoreJoueur2(scoreJoueur2); + + const Partie& partie = it->second->getPartie(); + + // Update win/loss records + if (scoreJoueur1 > scoreJoueur2) { + gestionJoueurs.updateWin(partie.getNomJoueur1()); + gestionJoueurs.updateLoss(partie.getNomJoueur2()); + } else if (scoreJoueur2 > scoreJoueur1) { + gestionJoueurs.updateWin(partie.getNomJoueur2()); + gestionJoueurs.updateLoss(partie.getNomJoueur1()); + } else { + gestionJoueurs.updateLoss(partie.getNomJoueur1()); + gestionJoueurs.updateLoss(partie.getNomJoueur2()); + } + } +} + +// Display all scores +void GestionScores::afficherScores() const { + for (const Score& score : scores) { + score.afficher(); + std::cout << std::endl; + } +} + +// Display Top Scorers +std::vector GestionScores::getTopScores(int numScoresToDisplay) { + std::vector topScores = scores; // Make a copy + std::sort(topScores.begin(), topScores.end(), + [](const Score& a, const Score& b) { + return (a.getScoreJoueur1() + a.getScoreJoueur2()) > (b.getScoreJoueur1() + b.getScoreJoueur2()); + }); + if (numScoresToDisplay > topScores.size()) { + numScoresToDisplay = topScores.size(); + } + topScores.resize(numScoresToDisplay); + return topScores; +} \ No newline at end of file diff --git a/GestionTerrains.h b/GestionTerrains.h new file mode 100644 index 0000000..d637275 --- /dev/null +++ b/GestionTerrains.h @@ -0,0 +1,19 @@ +#ifndef GESTION_TERRAINS.H +#define GESTION_TERRAINS.H + +#include "Terrain.h" + +class GestionTerrains +{ +private: + std::vector terrains; + +public: + void ajouterTerrain(Terrain terrain); + void afficherTerrains(); + bool supprimerTerrain(TypeTerrain type, int longueur, int largeur); + Terrain *rechercherTerrain(TypeTerrain type, int longueur, int largeur) const; +}; + + +#endif // GESTION_TERRAINS.H \ No newline at end of file diff --git a/GestionTerrains.hpp b/GestionTerrains.hpp new file mode 100644 index 0000000..1389898 --- /dev/null +++ b/GestionTerrains.hpp @@ -0,0 +1,34 @@ +#include "GestionTerrains.h" + +void GestionTerrains::ajouterTerrain(Terrain terrain) { + terrains.push_back(terrain); +} + +// Display all terrains +void GestionTerrains::afficherTerrains() { + for (const Terrain& terrain : terrains) { + terrain.afficher(); + cout << endl; + } +} + +// Remove a terrain +bool GestionTerrains::supprimerTerrain(TypeTerrain type, int longueur, int largeur) { + for (auto it = terrains.begin(); it != terrains.end(); ++it) { + if (it->getType() == type && it->getLongueur() == longueur && it->getLargeur() == largeur) { + terrains.erase(it); + return true; // Terrain found and deleted + } + } + return false; // Terrain not found +} + +// Search for a terrain +Terrain* GestionTerrains::rechercherTerrain(TypeTerrain type, int longueur, int largeur) const { + for (const auto& terrain : terrains) { + if (terrain.getType() == type && terrain.getLongueur() == longueur && terrain.getLargeur() == largeur) { + return const_cast(&terrain); + } + } + return nullptr; +} diff --git a/GestionTickets.h b/GestionTickets.h new file mode 100644 index 0000000..65a264e --- /dev/null +++ b/GestionTickets.h @@ -0,0 +1,39 @@ +#ifndef GESTIONTICKETS_H +#define GESTIONTICKETS_H + +#include +#include +#include +#include + +#include "ticket.h" +#include "GestionClients.h" + + +class GestionTickets { +public: + + // Generate a ticket + Ticket genererTicket(const std::string& type, double prix, const std::string& matchName, Reservation* reservation); + + // Add a ticket + void ajouterTicket(const Ticket& ticket); + + // Sell a ticket + bool vendreTicket(GestionClients& gestionClients, int ticketNumber); + + // Display all tickets + void afficherTickets() const; + + // Search for a ticket + Ticket* rechercherTicket(int ticketNumber); + + // Remove a ticket + void supprimerTicket(int ticketNumber); + +private: + std::vector tickets; + std::map ticketsMap; +}; + +#endif \ No newline at end of file diff --git a/GestionTickets.hpp b/GestionTickets.hpp new file mode 100644 index 0000000..2b3f8be --- /dev/null +++ b/GestionTickets.hpp @@ -0,0 +1,75 @@ +#include "Ticket.h" + + +// Generate a ticket +Ticket GestionTickets::genererTicket(const std::string& type, double prix, const std::string& matchName, Reservation* reservation) { + // Get row and col from reservation + int row = reservation->getRow(); + int col = reservation->getCol(); + + Ticket ticket(type, prix, matchName, reservation, row, col); + tickets.push_back(ticket); + ticketsMap[ticket.getNumeroTicket()] = &tickets.back(); + return ticket; +} + +// Add a ticket +void GestionTickets::ajouterTicket(const Ticket& ticket) { + tickets.push_back(ticket); + ticketsMap[ticket.getNumeroTicket()] = &tickets.back(); +} + +// Sell a ticket +bool GestionTickets::vendreTicket(GestionClients& gestionClients, int ticketNumber) { + Ticket* ticket = rechercherTicket(ticketNumber); + + if (ticket != nullptr && !ticket->isSold()) { + cout << "Enter client name to sell the ticket to: "; + string clientName; + cin >> clientName; + + Client* client = gestionClients.rechercherClient(clientName); + + if (client != nullptr) { + // Assign the ticket to the client + client->addTicket(ticket); + // Mark the ticket as sold + ticket->setSold(true); + return true; + } else { + cout << "Client not found." << endl; + return false; + } + } else { + cout << "Ticket not found or already sold." << endl; + return false; + } +} + +// Display all tickets +void GestionTickets::afficherTickets() const { + for (const Ticket& ticket : tickets) { + ticket.afficher(); + cout << endl; + } +} + +// Search for a ticket +Ticket* GestionTickets::rechercherTicket(int ticketNumber) { + auto it = ticketsMap.find(ticketNumber); + if (it != ticketsMap.end()) { + return it->second; + } + return nullptr; +} + +// Remove a ticket +void GestionTickets::supprimerTicket(int ticketNumber) { + auto it = ticketsMap.find(ticketNumber); + if (it != ticketsMap.end()) { + tickets.erase(std::remove(tickets.begin(), tickets.end(), *(it->second)), tickets.end()); + delete it->second; // Assuming you need to delete the dynamically allocated Ticket object + ticketsMap.erase(it); + } +} + diff --git a/Joueur.h b/Joueur.h new file mode 100644 index 0000000..80823bb --- /dev/null +++ b/Joueur.h @@ -0,0 +1,44 @@ +#ifndef JOUEUR.H +#define JOUEUR.H + +#include +#include +#include +#include + +class Joueur { + +public: + std::string nom; + int classement; + int nbVictoires; + int nbDefaites; + +public: + // Constructor 1: Initialize with name and ranking + Joueur(const std::string& nom, int classement); + + // Constructor 2: Initialize with just a name (ranking is optional) + Joueur(const std::string& nom); + + // Getters and Setters + std::string getNom() const; + int getClassement() const; + void setNom(std::string nom); + void setClassement(int classement); + int getNbVictoires() const; + int getNbDefaites() const; + void setNbVictoires(int nbVictoires); + void setNbDefaites(int nbDefaites); + + // Methods to increment wins and losses + void incrementerVictoire(); + void incrementerDefaite(); + + // Operator overloading for comparison + bool operator==(const Joueur& other) const; + + +}; + +#endif \ No newline at end of file diff --git a/Joueur.hpp b/Joueur.hpp new file mode 100644 index 0000000..956751e --- /dev/null +++ b/Joueur.hpp @@ -0,0 +1,58 @@ +#include "Joueur.h" + + +Joueur::Joueur(const std::string& nom, int classement) + : nom(nom), classement(classement), nbVictoires(0), nbDefaites(0) {} + +// Constructor 2: Initialize with just a name (ranking is optional) +Joueur::Joueur(const std::string& nom) + : nom(nom), classement(0), nbVictoires(0), nbDefaites(0) {} + +// Getters for Joueur +std::string Joueur::getNom() const { + return nom; +} + +int Joueur::getClassement() const { + return classement; +} + +int Joueur::getNbVictoires() const { + return nbVictoires; +} + +int Joueur::getNbDefaites() const { + return nbDefaites; +} + +// Setters for Joueur +void Joueur::setNom(std::string nom) { + this->nom = nom; +} + +void Joueur::setClassement(int classement) { + this->classement = classement; +} + +void Joueur::setNbVictoires(int nbVictoires) { + this->nbVictoires = nbVictoires; +} + +void Joueur::setNbDefaites(int nbDefaites) { + this->nbDefaites = nbDefaites; +} + +// Increment win count for Joueur +void Joueur::incrementerVictoire() { + nbVictoires++; +} + +// Increment loss count for Joueur +void Joueur::incrementerDefaite() { + nbDefaites++; +} + +// Operator overloading for Joueur comparison +bool Joueur::operator==(const Joueur& other) const { + return nom == other.nom; +} diff --git a/Match.h b/Match.h new file mode 100644 index 0000000..9e70d2c --- /dev/null +++ b/Match.h @@ -0,0 +1,19 @@ +#ifndef MATCH_H +#define MATCH_H + +#include "MatchBase.h" +#include "MatchResult.h" + +class Match : public MatchBase { +public: + Match(TypePartie type, const std::string& player1, const std::string& player2, Terrain* terrain = nullptr); + + void display() const override; + void setMatchResult(const MatchResult& result); + MatchResult getMatchResult() const; + +private: + MatchResult matchResult; +}; + +#endif // MATCH_H diff --git a/Match.hpp b/Match.hpp new file mode 100644 index 0000000..ea3eb40 --- /dev/null +++ b/Match.hpp @@ -0,0 +1,18 @@ +#include "Match.h" +#include + +Match::Match(TypePartie type, const std::string& player1, const std::string& player2, Terrain* terrain) + : MatchBase(type, player1, player2, terrain), matchResult(MatchResult::DRAW) {} + +void Match::display() const { + MatchBase::display(); + std::cout << "Match Result: " << matchResult.toString() << std::endl; +} + +void Match::setMatchResult(const MatchResult& result) { + matchResult = result; +} + +MatchResult Match::getMatchResult() const { + return matchResult; +} diff --git a/MatchBase.h b/MatchBase.h new file mode 100644 index 0000000..67ec1e6 --- /dev/null +++ b/MatchBase.h @@ -0,0 +1,41 @@ +#ifndef MATCHBASE_H +#define MATCHBASE_H + +#include + +#include "Terrain.h" +#include "MatchResult.h" +#include "Partie.h" + + +class MatchBase { +public: + MatchBase(TypePartie type, const std::string& player1, const std::string& player2, Terrain* terrain = nullptr); + + virtual void display() const; + int getNumber() const { return number; } + std::string getPlayer1() const { return player1; } + std::string getPlayer2() const { return player2; } + TypePartie getType() const { return type; } + Terrain* getTerrain() const { return terrain; } + + void setNumber(int number) { this->number = number; } + void setPlayer1(const std::string& player1) { this->player1 = player1; } + void setPlayer2(const std::string& player2) { this->player2 = player2; } + void setResult(const std::string& player, int resultAsInt); + + MatchResult getResult1() const { return result1; } + MatchResult getResult2() const { return result2; } + +protected: + TypePartie type; + std::string player1; + std::string player2; + MatchResult result1; + MatchResult result2; + int number; + static int nextMatchNumber; + Terrain* terrain; +}; + +#endif // MATCHBASE_H diff --git a/MatchBase.hpp b/MatchBase.hpp new file mode 100644 index 0000000..22dd0be --- /dev/null +++ b/MatchBase.hpp @@ -0,0 +1,42 @@ +#include "MatchBase.h" +#include +#include + +// Static member initialization for next match number +int MatchBase::nextMatchNumber = 1; + +// Constructor for MatchBase +MatchBase::MatchBase(TypePartie type, const std::string& player1, const std::string& player2, Terrain* terrain) + : type(type), player1(player1), player2(player2), result1(DRAW), result2(DRAW), terrain(terrain) { + number = nextMatchNumber++; +} + +// Display a match's details +void MatchBase::display() const { + std::cout << "Type: " << (type == SIMPLE ? "Simple" : "Double") << std::endl; + std::cout << "Player 1: " << player1 << std::endl; + std::cout << "Player 2: " << player2 << std::endl; + std::cout << "Result 1: " << (result1 == PLAYER1_WON ? "Victory" : (result1 == PLAYER2_WON ? "Defeat" : "Draw")) << std::endl; + std::cout << "Result 2: " << (result2 == PLAYER2_WON ? "Victory" : (result2 == PLAYER1_WON ? "Defeat" : "Draw")) << std::endl; + if (terrain) { + std::cout << "Terrain: " << terrain->getNom() << std::endl; + } else { + std::cout << "Terrain: Not specified" << std::endl; + } +} + +// Set the result of a match +void MatchBase::setResult(const std::string& player, int resultAsInt) { + if (resultAsInt < 0 || resultAsInt > 2) { + throw std::invalid_argument("Invalid result value. Must be between 0 and 2."); + } + MatchResult actualResult = static_cast(resultAsInt); + + if (player == player1) { + result1 = actualResult; + } else if (player == player2) { + result2 = actualResult; + } else { + throw std::invalid_argument("Player name does not match any participants in the match."); + } +} diff --git a/MatchResult.h b/MatchResult.h new file mode 100644 index 0000000..b776e2a --- /dev/null +++ b/MatchResult.h @@ -0,0 +1,24 @@ +#ifndef MATCHRESULT_H +#define MATCHRESULT_H + +#include + +enum class MatchResultEnum { + DRAW, + PLAYER1_WON, + PLAYER2_WON +}; + +class MatchResult { +public: + MatchResult(MatchResultEnum result = MatchResultEnum::DRAW); + + void setResult(MatchResultEnum result); + MatchResultEnum getResult() const; + std::string toString() const; + +private: + MatchResultEnum result; +}; + +#endif // MATCHRESULT_H diff --git a/MatchResult.hpp b/MatchResult.hpp new file mode 100644 index 0000000..d9f4f21 --- /dev/null +++ b/MatchResult.hpp @@ -0,0 +1,24 @@ +#include "MatchResult.h" + +MatchResult::MatchResult(MatchResultEnum result) : result(result) {} + +void MatchResult::setResult(MatchResultEnum result) { + this->result = result; +} + +MatchResultEnum MatchResult::getResult() const { + return result; +} + +std::string MatchResult::toString() const { + switch (result) { + case MatchResultEnum::DRAW: + return "Draw"; + case MatchResultEnum::PLAYER1_WON: + return "Player 1 Won"; + case MatchResultEnum::PLAYER2_WON: + return "Player 2 Won"; + default: + return "Unknown"; + } +} diff --git a/MatchSchedule.h b/MatchSchedule.h new file mode 100644 index 0000000..e594cfd --- /dev/null +++ b/MatchSchedule.h @@ -0,0 +1,17 @@ +#ifndef MATCHSCHEDULE_H +#define MATCHSCHEDULE_H + +#include +#include "Match.h" + +class MatchSchedule { +public: + void addMatch(const Match& match); + std::vector getMatches() const; + void displaySchedule() const; + +private: + std::vector matches; +}; + +#endif // MATCHSCHEDULE_H diff --git a/MatchSchedule.hpp b/MatchSchedule.hpp new file mode 100644 index 0000000..f0fe802 --- /dev/null +++ b/MatchSchedule.hpp @@ -0,0 +1,17 @@ +#include "MatchSchedule.h" +#include + +void MatchSchedule::addMatch(const Match& match) { + matches.push_back(match); +} + +std::vector MatchSchedule::getMatches() const { + return matches; +} + +void MatchSchedule::displaySchedule() const { + for (const auto& match : matches) { + match.display(); + std::cout << "------------------" << std::endl; + } +} diff --git a/Paiements.hpp b/Paiements.hpp new file mode 100644 index 0000000..77218f2 --- /dev/null +++ b/Paiements.hpp @@ -0,0 +1,67 @@ +#include "Paiements.h" + + +Paiement::Paiement(const std::string &clientName, double amount, const std::string &date) + : clientName(clientName), amount(amount), date(date) {} + +std::string Paiement::getClientName() const { + return clientName; +} + +double Paiement::getAmount() const { + return amount; +} + +std::string Paiement::getDate() const { + return date; +} + +std::string Paiement::toString() const { + return clientName + "," + std::to_string(amount) + "," + date; +} + +Paiement Paiement::fromString(const std::string &data) { + std::istringstream iss(data); + std::string clientName, date, amountStr; + std::getline(iss, clientName, ','); + std::getline(iss, amountStr, ','); + std::getline(iss, date, ','); + return Paiement(clientName, std::stod(amountStr), date); +} + +void Paiements::ajouterPaiement(const Paiement &paiement) { + paiements.push_back(paiement); +} + +void Paiements::afficherPaiements() const { + for (const auto &paiement : paiements) { + std::cout << "Client: " << paiement.getClientName() + << ", Amount: " << paiement.getAmount() + << ", Date: " << paiement.getDate() << std::endl; + } +} + +void Paiements::sauvegarderPaiements(const std::string &filename) const { + std::ofstream outFile(filename); + if (outFile.is_open()) { + for (const auto &paiement : paiements) { + outFile << paiement.toString() << std::endl; + } + outFile.close(); + } else { + std::cerr << "Unable to open file for writing: " << filename << std::endl; + } +} + +void Paiements::chargerPaiements(const std::string &filename) { + std::ifstream inFile(filename); + if (inFile.is_open()) { + std::string line; + while (std::getline(inFile, line)) { + paiements.push_back(Paiement::fromString(line)); + } + inFile.close(); + } else { + std::cerr << "Unable to open file for reading: " << filename << std::endl; + } +} diff --git a/Partie.h b/Partie.h new file mode 100644 index 0000000..4c8d3a4 --- /dev/null +++ b/Partie.h @@ -0,0 +1,48 @@ +#ifndef PARTIE_H +#define PARTIE_H + +#include +#include + +#include "Match.h" +#include "Terrain.h" +#include "MatchResult.h" + +enum TypePartie { + SIMPLE, + DOUBLE +}; + +class Partie { +public: + Partie(TypePartie type, const std::string& nomJoueur1, const std::string& nomJoueur2, Terrain* terrain = nullptr); + + void afficher() const; + int getNumero() const { return numero; } + std::string getNomJoueur1() const { return nomJoueur1; } + std::string getNomJoueur2() const { return nomJoueur2; } + TypePartie getType() const { return type; } + Terrain* getTerrain() const { return terrain; } + + void setNumero(int numero) { this->numero = numero; } + void setNomJoueur1(const std::string& nomJoueur1) { this->nomJoueur1 = nomJoueur1; } + void setNomJoueur2(const std::string& nomJoueur2) { this->nomJoueur2 = nomJoueur2; } + void setResultat(const std::string& nomJoueur, int resultatAsInt); + + MatchResult getResultat1() const { return resultat1; } + MatchResult getResultat2() const { return resultat2; } + + friend std::istream& operator>>(std::istream& is, TypePartie& tp); + +private: + TypePartie type; + std::string nomJoueur1; + std::string nomJoueur2; + MatchResult resultat1; + MatchResult resultat2; + int numero; + static int nextMatchNumber; + Terrain* terrain; +}; + +#endif // PARTIE_H diff --git a/Partie.hpp b/Partie.hpp new file mode 100644 index 0000000..090ddee --- /dev/null +++ b/Partie.hpp @@ -0,0 +1,48 @@ +#include "Partie.h" + +// Static member initialization for next match number +int Partie::nextMatchNumber = 1; + +// Constructor for Partie +Partie::Partie(TypePartie type, const std::string& nomJoueur1, const std::string& nomJoueur2, Terrain* terrain) + : type(type), nomJoueur1(nomJoueur1), nomJoueur2(nomJoueur2), resultat1(DRAW), resultat2(DRAW), terrain(terrain) { + numero = nextMatchNumber++; +} + +// Display a match's details +void Partie::afficher() const { + std::cout << "Type: " << (type == SIMPLE ? "Simple" : "Double") << std::endl; + std::cout << "Joueur 1: " << nomJoueur1 << std::endl; + std::cout << "Joueur 2: " << nomJoueur2 << std::endl; + std::cout << "Résultat 1: " << (resultat1 == PLAYER2_WON ? "Victoire" : (resultat1 == PLAYER2_WON ? "Défaite" : "Match Nul")) << std::endl; + std::cout << "Résultat 2: " << (resultat2 == PLAYER1_WON ? "Victoire" : (resultat2 == PLAYER2_WON ? "Défaite" : "Match Nul")) << std::endl; + if (terrain) { + std::cout << "Terrain: " << terrain->getNom() << std::endl; + } else { + std::cout << "Terrain: Non spécifié" << std::endl; + } +} + +// Set the result of a match +void Partie::setResultat(const std::string& nomJoueur, int resultatAsInt) { + if (resultatAsInt < 0 || resultatAsInt > 2) { + throw std::invalid_argument("Invalid result value. Must be between 0 and 2."); + } + MatchResult actualResultat = static_cast(resultatAsInt); + + if (nomJoueur == nomJoueur1) { + resultat1 = actualResultat; + } else if (nomJoueur == nomJoueur2) { + resultat2 = actualResultat; + } else { + throw std::invalid_argument("Player name does not match any participants in the match."); + } +} + +// Overload the operator>> to read TypePartie +std::istream& operator>>(std::istream& is, TypePartie& tp) { + int typeInt; + is >> typeInt; + tp = static_cast(typeInt); + return is; +} diff --git a/Place.h b/Place.h new file mode 100644 index 0000000..802da42 --- /dev/null +++ b/Place.h @@ -0,0 +1,43 @@ +#ifndef PLACE.H +#define PLACE .H + +class Place +{ +public: + string type; + double prix; + +public: + Place(string type, double prix); + void afficher() const; + string getType() const; + double getPrix() const; +}; + +// Définition de la classe StandardPlace +class StandardPlace : public Place +{ +public: + StandardPlace(int numero); + + void afficher() const; + int getNumero() const; + +private: + int numero; +}; + +// Définition de la classe VipPlace +class VipPlace : public Place +{ +public: + VipPlace(int numero); + + void afficher() const; + int getNumero() const; + +private: + int numero; +}; + +#endif \ No newline at end of file diff --git a/Place.hpp b/Place.hpp new file mode 100644 index 0000000..fb65c4d --- /dev/null +++ b/Place.hpp @@ -0,0 +1,47 @@ +#include "Place.h" + +Place::Place(string type, double prix) : type(type), prix(prix) {} + +// Display a place's details +void Place::afficher() const { + cout << "Type: " << type << endl; + cout << "Prix: " << prix << endl; +} + +// Get the type of a place +string Place::getType() const { + return type; +} + +// Get the price of a place +double Place::getPrix() const { + return prix; +} + +// Constructor for StandardPlace +StandardPlace::StandardPlace(int numero) : Place("Standard", 10.0), numero(numero) {} + +// Display a StandardPlace's details +void StandardPlace::afficher() const { + Place::afficher(); + cout << "Numéro: " << numero << endl; +} + +// Get the number of a StandardPlace +int StandardPlace::getNumero() const { + return numero; +} + +// Constructor for VipPlace +VipPlace::VipPlace(int numero) : Place("VIP", 20.0), numero(numero) {} + +// Display a VipPlace's details +void VipPlace::afficher() const { + Place::afficher(); + cout << "Numéro: " << numero << endl; +} + +// Get the number of a VipPlace +int VipPlace::getNumero() const { + return numero; +} \ No newline at end of file diff --git a/PlanificationParties.h b/PlanificationParties.h new file mode 100644 index 0000000..00b952c --- /dev/null +++ b/PlanificationParties.h @@ -0,0 +1,23 @@ +#ifndef PLANIFICATION_PARTIES_H +#define PLANIFICATION_PARTIES_H + + +#include +#include + +#include "GestionParties.h" +#include "Joueur.h" +#include "Tennis.h" + +class PlanificationParties { +private: + TennisChampionship* tennisChampionship; + std::vector joueurs; + void creerParties16emes(); + + +public: + PlanificationParties(TennisChampionship* tennisChampionship); +}; + +#endif // PLANIFICATION_PARTIES_H \ No newline at end of file diff --git a/PlanificationParties.hpp b/PlanificationParties.hpp new file mode 100644 index 0000000..7d3b0f1 --- /dev/null +++ b/PlanificationParties.hpp @@ -0,0 +1,225 @@ +#include "PlanificationParties.h" + +class PlanificationParties +{ +private: + TennisChampionship *tennisChampionship; + +public: + // Constructor (take TennisChampionship as an argument) + PlanificationParties(TennisChampionship *tennisChampionship) : tennisChampionship(tennisChampionship) {} + PlanificationParties::PlanificationParties(TennisChampionship *tennisChampionship) + : tennisChampionship(tennisChampionship) {} + vector getWinnersFromPreviousRound() + { + vector winners; + + // Retrieve the list of played matches from the previous round + vector previousRoundMatches = tennisChampionship->gestionParties.getPreviousRoundMatches(); + + // Iterate through matches and identify winners + for (Partie partie : previousRoundMatches) + { + if (partie.getResultat1() == PLAYER1_WON) + { + winners.push_back(Joueur(partie.getNomJoueur1())); + } + else if (partie.getResultat2() == PLAYER1_WON) + { + winners.push_back(Joueur(partie.getNomJoueur2())); + } + else + { + // Handle draws (optional, logic not provided) + // You can throw an exception or implement logic to handle draws here + // For example, if you want both players to advance: + winners.push_back(Joueur(partie.getNomJoueur1())); + winners.push_back(Joueur(partie.getNomJoueur2())); + } + } + return winners; + } + + void creerPartiesEliminatoires() + { + // Retrieve the list of enrolled players from the championnat object + vector joueursInscrits = tennisChampionship->championnat.getJoueursInscrits(); + + // Create a new match for each pair of players + for (int i = 0; i < joueursInscrits.size(); i++) + { + for (int j = i + 1; j < joueursInscrits.size(); j++) + { + TypePartie type = getMatchTypeFromUser(); + Partie partie(type, joueursInscrits[i].getNom(), joueursInscrits[j].getNom()); + tennisChampionship->gestionParties.ajouterPartie(partie); + } + } + } + + void attribuerJoueursParties() + { + // Retrieve the list of matches from the gestionParties object + vector matches = tennisChampionship->gestionParties.getParties(); + + // Retrieve the list of enrolled players from the championnat object + vector joueursInscrits = tennisChampionship->championnat.getJoueursInscrits(); + + // Randomly assign players to matches + for (Partie &partie : matches) + { + std::random_device rd; + std::mt19937 g(rd()); + std::shuffle(joueursInscrits.begin(), joueursInscrits.end(), g); + // Assign the first two players to the match + partie.setNomJoueur1(joueursInscrits[0].getNom()); + partie.setNomJoueur2(joueursInscrits[1].getNom()); + } + } + + void PlanificationParties::creerParties16emes() + { + // Get sorted players based on rankings (assuming you have a ranking system) + std::vector joueurs = tennisChampionship->gestionJoueurs.getJoueurs(); // Get players from TennisChampionship + std::sort(joueurs.begin(), joueurs.end(), [](const Joueur &a, const Joueur &b) + { + return a.getClassement() > b.getClassement(); // Sort by descending ranking + }); + + // Pair players based on rankings + for (int i = 0; i < joueurs.size() / 2; ++i) + { + TypePartie type = getMatchTypeFromUser(); + Partie partie(type, joueurs[i].getNom(), joueurs[joueurs.size() - 1 - i].getNom()); + tennisChampionship->gestionParties.ajouterPartie(partie); + } + } + + // ... (other methods of the PlanificationParties class) ... + + TypePartie getMatchTypeFromUser() + { + int input; + cout << "Enter match type (0 - Simple, 1 - Double): "; + cin >> input; + + if (input == 0) + { + return SIMPLE; + } + else if (input == 1) + { + return DOUBLE; + } + else + { + cout << "Invalid input. Please enter 0 for Simple or 1 for Double: "; + return getMatchTypeFromUser(); + } + } + void PlanificationParties::creerTournoi(int nbRounds) + { + // Get sorted players based on rankings (assuming you have a ranking system) + std::vector joueurs = tennisChampionship->gestionJoueurs.getJoueurs(); + std::sort(joueurs.begin(), joueurs.end(), [](const Joueur &a, const Joueur &b) + { + return a.getClassement() > b.getClassement(); // Sort by descending ranking + }); + + // Check for minimum number of players + if (joueurs.size() < 2) + { + cout << "Not enough players to start a tournament." << endl; + return; + } + + // Create the Round of 16 matches + creerParties16emes(); + + // Create the rest of the rounds + for (int round = 1; round < nbRounds; round++) + { + creerRound(round); + } + } + + void PlanificationParties::creerParties16emes() + { + std::vector joueurs = tennisChampionship->gestionJoueurs.getJoueurs(); + // (Get the players based on how you add them to the tournament) + + // Sort players based on rankings + std::sort(joueurs.begin(), joueurs.end(), [](const Joueur &j1, const Joueur &j2) + { return j1.getClassement() > j2.getClassement(); }); + + // Pair players based on rankings + for (int i = 0; i < joueurs.size() / 2; ++i) + { + TypePartie type = getMatchTypeFromUser(); + Partie partie(type, joueurs[i].getNom(), joueurs[joueurs.size() - 1 - i].getNom()); + tennisChampionship->gestionParties.ajouterPartie(partie); + } + } + + void PlanificationParties::creerRound(int round) + { + // Get the winners from the previous round + std::vector winners = getWinnersFromPreviousRound(); + + // Sort winners based on rankings + std::sort(winners.begin(), winners.end(), [](const Joueur &j1, const Joueur &j2) + { return j1.getClassement() > j2.getClassement(); }); + + // Create matches for the round + for (int i = 0; i < winners.size(); i += 2) + { + TypePartie type = getMatchTypeFromUser(); + Partie partie(type, winners[i].getNom(), winners[i + 1].getNom()); + tennisChampionship->gestionParties.ajouterPartie(partie); + } + } + + void PlanificationParties::creerPartieFinale() + { + std::vector vainqueurs = getWinnersFromPreviousRound(); + + // Check if there are exactly two winners (assuming semifinals) + if (vainqueurs.size() != 2) + { + throw runtime_error("Unexpected number of winners in semifinals."); + } + + // Create a new match for the two winners + TypePartie type = getMatchTypeFromUser(); + Partie partie(type, vainqueurs[0].getNom(), vainqueurs[1].getNom()); + tennisChampionship->gestionParties.ajouterPartie(partie); + } + + vector PlanificationParties::getWinnersFromPreviousRound() + { + vector winners; + + // Retrieve the list of played matches from the previous round + vector previousRoundMatches = tennisChampionship->gestionParties.getPreviousRoundMatches(); + + // Iterate through matches and identify winners + for (Partie partie : previousRoundMatches) + { + if (partie.getResultat1() == PLAYER1_WON) + { + winners.push_back(Joueur(partie.getNomJoueur1())); + } + else if (partie.getResultat2() == PLAYER1_WON) + { + winners.push_back(Joueur(partie.getNomJoueur2())); + } + else + { + + winners.push_back(Joueur(partie.getNomJoueur1())); + winners.push_back(Joueur(partie.getNomJoueur2())); + } + } + return winners; + } +}; \ No newline at end of file diff --git a/PlanificationPlaces.h b/PlanificationPlaces.h new file mode 100644 index 0000000..215f7fc --- /dev/null +++ b/PlanificationPlaces.h @@ -0,0 +1,29 @@ +#ifndef PLANIFICATION_PARTIES.H +#define PLANIFICATION_PARTIES.H + +#include + +#include "Joueur.h" +#include "Partie.h" + +enum TypeTerrain +{ + DUR, + TERRE_BATTUE, + GAZON +}; + +class SeatingPlan{ + + + // Methods for managing seating + void initializeSeatingPlan(int rows, int cols); + bool isSeatAvailable(int row, int col); + void reserveSeat(int row, int col); + void releaseSeat(int row, int col); + void displaySeatingPlan() const; // Display the seating plan + + +}; + +#endif \ No newline at end of file diff --git a/PlanificationPlaces.hpp b/PlanificationPlaces.hpp new file mode 100644 index 0000000..176bec5 --- /dev/null +++ b/PlanificationPlaces.hpp @@ -0,0 +1,56 @@ +#include "PlanificationPlaces.h" + +class SeatingPlan +{ +public: + + SeatingPlan(int numRows, int numCols) : seatingPlan(numRows, vector(numCols, false)) {} + + void reserveSeat(int row, int col) + { + if (row >= 0 && row < seatingPlan.size() && col >= 0 && col < seatingPlan[row].size()) + { + seatingPlan[row][col] = 'X'; // Mark as reserved + } + } + + bool isSeatAvailable(int row, int col) + { + if (row >= 0 && row < seatingPlan.size() && col >= 0 && col < seatingPlan[row].size()) + { + return !seatingPlan[row][col]; + } + return false; + } + + void displaySeatingPlan() const + { + cout << "Seating Plan:" << endl; + for (int i = 0; i < seatingPlan.size(); i++) + { + for (int j = 0; j < seatingPlan[i].size(); j++) + { + cout << (seatingPlan[i][j] ? "X" : "O") << " "; + } + cout << endl; + } + } + void initializeSeatingPlan(int row, int col) + { + seatingPlan.resize(row); + for (int i = 0; i < row; ++i) + { + seatingPlan[i].resize(col, '.'); // Initialize with '.' for available seats + } + } + + void releaseSeat(int row, int col) + { + if (!isSeatAvailable(row, col)) + { + seatingPlan[row][col] = '.'; // Mark as available + } + } +}; + +#endif \ No newline at end of file diff --git a/Reservation.h b/Reservation.h new file mode 100644 index 0000000..9ec914c --- /dev/null +++ b/Reservation.h @@ -0,0 +1,30 @@ +#ifndef RESERVATION_H +#define RESERVATION_H + +#include "Client.h" +#include "Partie.h" + + +class Reservation { +public: + Reservation(Client* client, Partie* partie, Terrain* terrain, int row, int col); + + // Getters + Client* getClient() const; + Partie* getPartie() const; + Terrain* getTerrain() const; + int getRow() const; + int getCol() const; + + // Display reservation details + void afficher() const; + +private: + Client* client; + Partie* partie; + Terrain* terrain; + int row; + int col; +}; + +#endif \ No newline at end of file diff --git a/Reservation.hpp b/Reservation.hpp new file mode 100644 index 0000000..d0a2023 --- /dev/null +++ b/Reservation.hpp @@ -0,0 +1,35 @@ +#include "Reservation.h" + +Reservation::Reservation(Client* client, Partie* partie, Terrain* terrain, int row, int col) + : client(client), partie(partie), terrain(terrain), row(row), col(col) {} + +// Getter methods +Client* Reservation::getClient() const { + return client; +} + +Partie* Reservation::getPartie() const { + return partie; +} + +Terrain* Reservation::getTerrain() const { + return terrain; +} + +int Reservation::getRow() const { + return row; +} + +int Reservation::getCol() const { + return col; +} + +// Display reservation details +void Reservation::afficher() const { + cout << "Client: " << client->getNom() << endl; + cout << "Match: " << partie->getNomJoueur1() << " vs. " << partie->getNomJoueur2() << endl; + cout << "Terrain: " << terrain->getType() << endl; + cout << "Row: " << row << endl; + cout << "Column: " << col << endl; +} + diff --git a/Score.h b/Score.h new file mode 100644 index 0000000..8cd4832 --- /dev/null +++ b/Score.h @@ -0,0 +1,18 @@ +#ifndef SCORE_H +#define SCORE_H + +#include +#include +#include "Scoreboard.h" + +class Score { +public: + void updateScore(const std::string& player, int score); + int getScore(const std::string& player) const; + void displayScores() const; + +private: + std::map scores; +}; + +#endif // SCOREBOARD_H diff --git a/Score.hpp b/Score.hpp new file mode 100644 index 0000000..63460ed --- /dev/null +++ b/Score.hpp @@ -0,0 +1,19 @@ +#include "Score.h" + +void Score::updateScore(const std::string& player, int score) { + scores[player] = score; +} + +int Score::getScore(const std::string& player) const { + auto it = scores.find(player); + if (it != scores.end()) { + return it->second; + } + return 0; +} + +void Score::displayScores() const { + for (const auto& entry : scores) { + std::cout << "Player: " << entry.first << ", Score: " << entry.second << std::endl; + } +} \ No newline at end of file diff --git a/Scoreboard.hpp b/Scoreboard.hpp new file mode 100644 index 0000000..d085bc4 --- /dev/null +++ b/Scoreboard.hpp @@ -0,0 +1,42 @@ +#include "Scoreboard.h" + +void Scoreboard::ajouterScore(const std::string& joueur1, const std::string& joueur2, int score1, int score2) { + scores[joueur1][joueur2] = score1; + scores[joueur2][joueur1] = score2; +} + +void Scoreboard::afficherScores() const { + for (const auto& match : scores) { + for (const auto& result : match.second) { + std::cout << match.first << " vs " << result.first << " : " << result.second << std::endl; + } + } +} + +void Scoreboard::sauvegarderScores(const std::string& filename) const { + std::ofstream outFile(filename); + if (outFile.is_open()) { + for (const auto& match : scores) { + for (const auto& result : match.second) { + outFile << match.first << "," << result.first << "," << result.second << std::endl; + } + } + outFile.close(); + } else { + std::cerr << "Unable to open file for writing: " << filename << std::endl; + } +} + +void Scoreboard::chargerScores(const std::string& filename) { + std::ifstream inFile(filename); + if (inFile.is_open()) { + std::string joueur1, joueur2; + int score; + while (inFile >> joueur1 >> joueur2 >> score) { + scores[joueur1][joueur2] = score; + } + inFile.close(); + } else { + std::cerr << "Unable to open file for reading: " << filename << std::endl; + } +} diff --git a/Tennis.h b/Tennis.h new file mode 100644 index 0000000..bced3ce --- /dev/null +++ b/Tennis.h @@ -0,0 +1,52 @@ +#ifndef TENNIS_CHAMPIONSHIP_H +#define TENNIS_CHAMPIONSHIP_H + +#include +#include +#include +#include + +#include "MatchSchedule.h" +#include "TournamentRanking.h" +#include "Championnat.h" +#include "MatchResult.h" +#include "Match.h" +#include "Ticket.h" +#include "Reservation.h" +#include "MatchBase.h" + + + +class TennisChampionship +{ +public: + TennisChampionship(); + void addMatch(std::shared_ptr match); + void displayMatches() const; + void TennisChampionship::scheduleMatches(int championshipIndex, int round); + MatchSchedule createMatchSchedule(const TennisChampionship &championnat); + void scheduleMatch(const Match &match); + MatchSchedule &getMatchSchedule(); // Return a reference to the schedule + + // Methods for managing tournament rankings + TournamentRanking createTournamentRankings(const TennisChampionship &championnat); + void updateTournamentRankings(const MatchResult &matchResult); + TournamentRanking &getTournamentRankings(); // Return a reference to the rankings + + // Methods for saving/loading championship data + void saveChampionshipData(const std::string &filename); + void loadChampionshipData(const std::string &filename); + + // Methods for ticket management (examples) + Ticket generateTicket(const std::string &ticketType, double price, const std::string &matchName, Reservation *reservation); + bool sellTicket(int ticketNumber); + + + +private: + std::vector> matches; + MatchSchedule matchSchedule; + TournamentRanking tournamentRankings; +} + +#endif \ No newline at end of file diff --git a/Tennis.hpp b/Tennis.hpp new file mode 100644 index 0000000..12cb775 --- /dev/null +++ b/Tennis.hpp @@ -0,0 +1,106 @@ +#include "Tennis.h" + +TennisChampionship::TennisChampionship() {} + +void TennisChampionship::addMatch(const Match& match) { + matches.push_back(match); +} + +void TennisChampionship::scheduleMatches(int championshipIndex, int round) { + if (championshipIndex >= 0 && championshipIndex < championnats.size() && round >= 1 && round <= championnats[championshipIndex]->numRounds) { + Championnat* championnat = championnats[championshipIndex]; + championship->scheduleRound(round); + } +} + + +MatchSchedule TennisChampionship::createMatchSchedule(const TennisChampionship& championnat) { + return MatchSchedule(championnat); +} + +void TennisChampionship::scheduleMatch(const Match& match) { + schedule.addMatch(match); +} + +MatchSchedule& TennisChampionship::getMatchSchedule() { + return schedule; +} +TournamentRanking TennisChampionship::getTournamentRanking() { + return rankings; +} + +void TennisChampionship::updateTournamentRanking(const Match& match) { + rankings.updateRanking(match); +} + +void TennisChampionship::addChampionship(TennisChampionship championnat) { + championnats.push_back(make_shared(championnat)); +} + +void TennisChampionship::removeChampionship(int index) { + if (index >= 0 && index < championnats.size()) { + championnats.erase(championnats.begin() + index); + } +} + +vector> TennisChampionship::getChampionnats() const { + return championnats; +} + +void TennisChampionship::addMatch(std::shared_ptr match) { + matches.push_back(match); +} + +void TennisChampionship::displayMatches() const { + for (const auto& match : matches) { + match->display(); + } +} + +void TennisChampionship::setChampionnats(vector> newChampionnats) { + championnats = newChampionnats; +} + +void TennisChampionship::addPlayer(const Joueur& joueur) { + gestionJoueurs.ajouterJoueur(joueur); +} + +void TennisChampionship::removePlayer(const string& nomJoueur) { + gestionJoueurs.supprimerJoueur(nomJoueur); +} + +void TennisChampionship::updatePlayer(const Joueur& joueur) { + gestionJoueurs.modifierJoueur(joueur); +} + +Joueur* TennisChampionship::findPlayer(const string& nomJoueur) { + return gestionJoueurs.rechercherJoueur(nomJoueur); +} + +vector TennisChampionship::getPlayers() const { + return gestionJoueurs.getJoueurs(); +} + +void TennisChampionship::addTerrain(const Terrain& terrain) { + gestionTerrains.ajouterTerrain(terrain); +} + +void TennisChampionship::removeTerrain(const Terrain& terrain) { + gestionTerrains.supprimerTerrain(terrain); +} + +void TennisChampionship::updateTerrain(const Terrain& terrain) { + gestionTerrains.modifierTerrain(terrain); +} + +Terrain* TennisChampionship::findTerrain(const Terrain& terrain) { + return gestionTerrains.rechercherTerrain(terrain); +} + +vector TennisChampionship::getTerrains() const { + return gestionTerrains.getTerrains(); +} + +void TennisChampionship::addPartie(const Partie& partie) { + gestionParties.ajouterPartie(partie); +} diff --git a/TennisEvent.h b/TennisEvent.h new file mode 100644 index 0000000..e17a724 --- /dev/null +++ b/TennisEvent.h @@ -0,0 +1,136 @@ +#ifndef TENNIS_EVENT_H +#define TENNIS_EVENT_H + +#include +#include + +#include "Terrain.h" +#include "Client.h" +#include "GestionJoueurs.h" +#include "Ticket.h" +#include "Reservation.h" +#include "scoreboard.h" + + +using namespace std; + +class TennisEvent { +public: + string name; + int year; + vector terrains; + vector clients; + vector tickets; + vector reservations; + ScoreBoard* scoreBoard; + GestionJoueurs* gestionJoueurs; + + TennisEvent(string name, int year) : name(name), year(year) {} + + void addTerrain(Terrain* terrain) { + terrains.push_back(terrain); + } + + void addClient(Client* client) { + clients.push_back(client); + } + + void addTicket(Ticket* ticket) { + tickets.push_back(ticket); + } + + void addReservation(Reservation* reservation) { + reservations.push_back(reservation); + } + + Terrain* getTerrain(int index) { + if (index >= 0 && index < terrains.size()) { + return terrains[index]; + } + return nullptr; + } + + Client* getClient(int index) { + if (index >= 0 && index < clients.size()) { + return clients[index]; + } + return nullptr; + } + + Ticket* getTicket(int index) { + if (index >= 0 && index < tickets.size()) { + return tickets[index]; + } + return nullptr; + } + + Reservation* getReservation(int index) { + if (index >= 0 && index < reservations.size()) { + return reservations[index]; + } + return nullptr; + } + + void displayTerrains() { + cout << "Terrains in " << name << " (" << year << "):" << endl; + for (int i = 0; i < terrains.size(); i++) { + cout << i + 1 << ". "; + terrains[i]->afficher(); + } + } + + void displayClients() { + cout << "Clients in " << name << " (" << year << "):" << endl; + for (int i = 0; i < clients.size(); i++) { + cout << i + 1 << ". "; + clients[i]->afficher(); + } + } + + void displayTickets() { + cout << "Tickets in " << name << " (" << year << "):" << endl; + for (int i = 0; i < tickets.size(); i++) { + cout << i + 1 << ". "; + tickets[i]->afficher(); + } + } + + void displayReservations() { + cout << "Reservations in " << name << " (" << year << "):" << endl; + for (int i = 0; i < reservations.size(); i++) { + cout << i + 1 << ". "; + reservations[i]->afficher(); + } + } + + void displayScores() { + cout << "Scores in " << name << " (" << year << "):" << endl; + scoreBoard->displayScores(); + } + void displayJoueurs() { + cout << "Joueurs in " << name << " (" << year << "):" << endl; + gestionJoueurs->afficherJoueurs(); + } + + void addScore(Score* score) { + scoreBoard->addScore(score); + } + + void updateScore(int matchIndex, int scorePlayer1, int scorePlayer2) { + scoreBoard->updateScore(matchIndex, scorePlayer1, scorePlayer2); + } + + void displayMatches() { + cout << "Matches in " << name << " (" << year << "):" << endl; + for (int i = 0; i < scoreBoard->getScoreJoueur1().size(); i++) { + cout << i + 1 << ". "; + scoreBoard->getScore(i)->afficher(); + } + } + + +}; + + + +#endif \ No newline at end of file diff --git a/Terrain.h b/Terrain.h new file mode 100644 index 0000000..3ad26a5 --- /dev/null +++ b/Terrain.h @@ -0,0 +1,47 @@ +#ifndef TERRAIN.H +#define TERRAIN.H + +enum TypeTerrain { + GAZON, + TERRE_BATTUE, + ASPHALTE +}; + +class Terrain +{ +public: + // Constructors + Terrain(TypeTerrain type, int longueur, int largeur); + Terrain(TypeTerrain type, int longueur, int largeur, int nbPlacesReservees); + + // Getters + TypeTerrain getType() const; + int getLongueur() const; + int getLargeur() const; + std::string getNom() const; + std::vector> getSeatingPlan() const; + int getNbPlacesReservees() const; + + // Setters + void setLongueur(int longueur); + void setLargeur(int largeur); + void setNbPlacesReservees(int nbPlacesReservees); + void setTerrain(TypeTerrain type, int longueur, int largeur); + void setTerrain(TypeTerrain type, int longueur, int largeur, int nbPlacesReservees); + + // Display terrain details + void afficher() const; + + int getRow() const { return seatingPlan.size(); } // Return the number of rows + int getCol() const { return seatingPlan[0].size(); } // Return the number of columns + +private: + TypeTerrain type; + int longueur; + int largeur; + int nbPlacesReservees; + std::string nom; + std::vector> seatingPlan; // 2D vector for seating plan +}; + +#endif \ No newline at end of file diff --git a/Terrain.hpp b/Terrain.hpp new file mode 100644 index 0000000..02dedbe --- /dev/null +++ b/Terrain.hpp @@ -0,0 +1,75 @@ +#include "Terrain.h" + +Terrain::Terrain(TypeTerrain type, int longueur, int largeur) + : type(type), longueur(longueur), largeur(largeur), nbPlacesReservees(0) { + initializeSeatingPlan(longueur, largeur); // Initialize seating plan based on terrain size +} + +// Constructor with type, length, width, and reserved seats +Terrain::Terrain(TypeTerrain type, int longueur, int largeur, int nbPlacesReservees) + : type(type), longueur(longueur), largeur(largeur), nbPlacesReservees(nbPlacesReservees) { + initializeSeatingPlan(longueur, largeur); // Initialize seating plan based on terrain size +} + +// Getter for type +TypeTerrain Terrain::getType() const { + return type; +} + +// Getter for length +int Terrain::getLongueur() const { + return longueur; +} + +// Getter for width +int Terrain::getLargeur() const { + return largeur; +} + +// Getter for reserved seats +int Terrain::getNbPlacesReservees() const { + return nbPlacesReservees; +} + +// Setter for length +void Terrain::setLongueur(int longueur) { + this->longueur = longueur; + initializeSeatingPlan(this->longueur, this->largeur); // Reinitialize seating plan +} + +// Setter for width +void Terrain::setLargeur(int largeur) { + this->largeur = largeur; + initializeSeatingPlan(this->longueur, this->largeur); // Reinitialize seating plan +} + +// Setter for reserved seats +void Terrain::setNbPlacesReservees(int nbPlacesReservees) { + this->nbPlacesReservees = nbPlacesReservees; +} + +// Setter for all attributes except reserved seats +void Terrain::setTerrain(TypeTerrain type, int longueur, int largeur) { + this->type = type; + this->longueur = longueur; + this->largeur = largeur; + initializeSeatingPlan(longueur, largeur); // Reinitialize seating plan +} + +// Setter for all attributes including reserved seats +void Terrain::setTerrain(TypeTerrain type, int longueur, int largeur, int nbPlacesReservees) { + this->type = type; + this->longueur = longueur; + this->largeur = largeur; + this->nbPlacesReservees = nbPlacesReservees; + initializeSeatingPlan(longueur, largeur); // Reinitialize seating plan +} + +// Display terrain details +void Terrain::afficher() const { + cout << "Type de terrain: " << (type == DUR ? "Dur" : (type == TERRE_BATTUE ? "Terre battue" : "Gazon")) << endl; + cout << "Longueur: " << longueur << endl; + cout << "Largeur: " << largeur << endl; + cout << "Nombre de places réservées: " << nbPlacesReservees << endl; +} + diff --git a/Ticket.h b/Ticket.h new file mode 100644 index 0000000..71b744d --- /dev/null +++ b/Ticket.h @@ -0,0 +1,39 @@ +#ifndef TICKET_H +#define TICKET_H + +#include +#include "Reservation.h" + +class Ticket { +public: + Ticket(const std::string& type, double prix, const std::string& matchName, Reservation* reservation, int row, int col); // Constructor + + // Getters + std::string getType() const { return type; } + double getPrix() const { return prix; } + std::string getMatchName() const { return matchName; } + int getNumeroTicket() const { return numeroTicket; } // Getter for ticket number + bool isSold() const { return sold; } // Getter to check if the ticket is sold + Reservation* getReservation() const { return reservation; } // Getter for the reservation + int getRow() const { return row; } + int getCol() const { return col; } + + // Setters + void setSold(bool sold) { this->sold = sold; } // Setter to mark the ticket as sold + + // Display ticket information + void afficher() const; + +private: + std::string type; + double prix; + std::string matchName; + int numeroTicket; // Ticket number + bool sold; // Flag to indicate if the ticket is sold + Reservation* reservation; + int row; + int col; + static int nextTicketNumber; +}; + +#endif \ No newline at end of file diff --git a/Ticket.hpp b/Ticket.hpp new file mode 100644 index 0000000..c4d4228 --- /dev/null +++ b/Ticket.hpp @@ -0,0 +1,21 @@ +#include "Ticket.h" + +// Static member initialization for next ticket number +int Ticket::nextTicketNumber = 1; + +// Constructor for Ticket +Ticket::Ticket(const std::string& type, double prix, const std::string& matchName, Reservation* reservation, int row, int col) + : type(type), prix(prix), matchName(matchName), numeroTicket(nextTicketNumber++), sold(false), reservation(reservation), row(row), col(col) {} + +// Display ticket information +void Ticket::afficher() const { + cout << "Ticket Number: " << numeroTicket << endl; + cout << "Type: " << type << endl; + cout << "Price: " << prix << endl; + cout << "Match: " << matchName << endl; + cout << "Sold: " << (sold ? "Yes" : "No") << endl; + cout << "Reservation: " << (reservation ? "Yes" : "No") << endl; + cout << "Row: " << row << endl; + cout << "Column: " << col << endl; +} + diff --git a/TournamentRanking.h b/TournamentRanking.h new file mode 100644 index 0000000..f664c37 --- /dev/null +++ b/TournamentRanking.h @@ -0,0 +1,18 @@ +#ifndef TOURNAMENTRANKING_H +#define TOURNAMENTRANKING_H + +#include +#include +#include + +class TournamentRanking { +public: + void ajouterMatch(const std::string &joueur1, const std::string &joueur2, int score1, int score2); + void afficherClassement() const; + +private: + std::map classement; + void mettreAJourClassement(const std::string &joueur, int points); +}; + +#endif // TOURNAMENTRANKING_H diff --git a/TournamentRanking.hpp b/TournamentRanking.hpp new file mode 100644 index 0000000..b432b9b --- /dev/null +++ b/TournamentRanking.hpp @@ -0,0 +1,24 @@ +#include "TournamentRanking.h" +#include + +void TournamentRanking::ajouterMatch(const std::string &joueur1, const std::string &joueur2, int score1, int score2) { + int points1 = (score1 > score2) ? 3 : (score1 == score2) ? 1 : 0; + int points2 = (score2 > score1) ? 3 : (score1 == score2) ? 1 : 0; + + mettreAJourClassement(joueur1, points1); + mettreAJourClassement(joueur2, points2); +} + +void TournamentRanking::mettreAJourClassement(const std::string &joueur, int points) { + if (classement.find(joueur) == classement.end()) { + classement[joueur] = 0; + } + classement[joueur] += points; +} + +void TournamentRanking::afficherClassement() const { + std::cout << "Classement du tournoi:\n"; + for (const auto &entry : classement) { + std::cout << entry.first << " : " << entry.second << " points\n"; + } +} diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..4a0b530 --- /dev/null +++ b/app/.gitignore @@ -0,0 +1,74 @@ +# This file is used to ignore files which are generated +# ---------------------------------------------------------------------------- + +*~ +*.autosave +*.a +*.core +*.moc +*.o +*.obj +*.orig +*.rej +*.so +*.so.* +*_pch.h.cpp +*_resource.rc +*.qm +.#* +*.*# +core +!core/ +tags +.DS_Store +.directory +*.debug +Makefile* +*.prl +*.app +moc_*.cpp +ui_*.h +qrc_*.cpp +Thumbs.db +*.res +*.rc +/.qmake.cache +/.qmake.stash + +# qtcreator generated files +*.pro.user* +CMakeLists.txt.user* + +# xemacs temporary files +*.flc + +# Vim temporary files +.*.swp + +# Visual Studio generated files +*.ib_pdb_index +*.idb +*.ilk +*.pdb +*.sln +*.suo +*.vcproj +*vcproj.*.*.user +*.ncb +*.sdf +*.opensdf +*.vcxproj +*vcxproj.* + +# MinGW generated files +*.Debug +*.Release + +# Python byte code +*.pyc + +# Binaries +# -------- +*.dll +*.exe + diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt new file mode 100644 index 0000000..993e538 --- /dev/null +++ b/app/CMakeLists.txt @@ -0,0 +1,88 @@ +cmake_minimum_required(VERSION 3.5) + +project(app VERSION 0.1 LANGUAGES CXX) + +set(CMAKE_AUTOUIC ON) +set(CMAKE_AUTOMOC ON) +set(CMAKE_AUTORCC ON) + +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Widgets LinguistTools) +find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets LinguistTools) + +set(TS_FILES app_fr_FR.ts) + +set(PROJECT_SOURCES + main.cpp + mainwindow.cpp + mainwindow.h + + ${TS_FILES} +) + +if(${QT_VERSION_MAJOR} GREATER_EQUAL 6) + qt_add_executable(app + MANUAL_FINALIZATION + ${PROJECT_SOURCES} + playerbox.h playerbox.cpp playerbox.ui + + + + + scoreboard.h scoreboard.cpp scoreboard.ui + mainwindow.ui + matchui.h matchui.cpp matchui.ui + + + + ) +# Define target properties for Android with Qt 6 as: +# set_property(TARGET app APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR +# ${CMAKE_CURRENT_SOURCE_DIR}/android) +# For more information, see https://doc.qt.io/qt-6/qt-add-executable.html#target-creation + + qt_create_translation(QM_FILES ${CMAKE_SOURCE_DIR} ${TS_FILES}) +else() + if(ANDROID) + add_library(app SHARED + ${PROJECT_SOURCES} + ) +# Define properties for Android with Qt 5 after find_package() calls as: +# set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android") + else() + add_executable(app + ${PROJECT_SOURCES} + ) + endif() + + qt5_create_translation(QM_FILES ${CMAKE_SOURCE_DIR} ${TS_FILES}) +endif() + +target_link_libraries(app PRIVATE Qt${QT_VERSION_MAJOR}::Widgets) + +# Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1. +# If you are developing for iOS or macOS you should consider setting an +# explicit, fixed bundle identifier manually though. +if(${QT_VERSION} VERSION_LESS 6.1.0) + set(BUNDLE_ID_OPTION MACOSX_BUNDLE_GUI_IDENTIFIER com.example.app) +endif() +set_target_properties(app PROPERTIES + ${BUNDLE_ID_OPTION} + MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} + MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} + MACOSX_BUNDLE TRUE + WIN32_EXECUTABLE TRUE +) + +include(GNUInstallDirs) +install(TARGETS app + BUNDLE DESTINATION . + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} +) + +if(QT_VERSION_MAJOR EQUAL 6) + qt_finalize_executable(app) +endif() diff --git a/app/app_fr_FR.ts b/app/app_fr_FR.ts new file mode 100644 index 0000000..a3aa6d6 --- /dev/null +++ b/app/app_fr_FR.ts @@ -0,0 +1,3 @@ + + + diff --git a/app/ball.ico b/app/ball.ico new file mode 100644 index 0000000..dbbccb0 Binary files /dev/null and b/app/ball.ico differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/query/cache-v2 b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/query/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/query/cmakeFiles-v1 b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/query/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/query/codemodel-v2 b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/query/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cache-v2-83235ff4b0909d90f78a.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cache-v2-83235ff4b0909d90f78a.json new file mode 100644 index 0000000..25f7c50 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cache-v2-83235ff4b0909d90f78a.json @@ -0,0 +1,6259 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/addr2line.exe" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/ar.exe" + }, + { + "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" : "a:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug" + }, + { + "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" : "7" + }, + { + "name" : "CMAKE_COLOR_DIAGNOSTICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable colored diagnostics throughout." + } + ], + "type" : "BOOL", + "value" : "1" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Qt/Tools/CMake_64/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Qt/Tools/CMake_64/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Qt/Tools/CMake_64/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "STRING", + "value" : "C:/Qt/Tools/mingw1120_64/bin/g++.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/gcc-ar.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/gcc-ranlib.exe" + }, + { + "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" : "-DQT_QML_DEBUG" + }, + { + "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_INIT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "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_CXX_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : ".obj" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/gcc.exe" + }, + { + "name" : "CMAKE_C_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/dlltool.exe" + }, + { + "name" : "CMAKE_EDIT_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cache edit program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Qt/Tools/CMake_64/bin/cmake-gui.exe" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "Unknown" + }, + { + "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" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable output of compile commands during generation." + } + ], + "type" : "BOOL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Ninja" + }, + { + "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_GNUtoMS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Convert GNU import libraries to MS format (requires Visual Studio)" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "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" : "A:/workspace/special-broccoli/app" + }, + { + "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_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" : "C:/Program Files (x86)/app" + }, + { + "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" : "C:/Qt/Tools/mingw1120_64/bin/ld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program used to build from build.ninja files." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/Ninja/ninja.exe" + }, + { + "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" : "C:/Qt/Tools/mingw1120_64/bin/nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/objdump.exe" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64" + }, + { + "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_INCLUDE_BEFORE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "app" + }, + { + "name" : "CMAKE_PROJECT_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0.1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MAJOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MINOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_PATCH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_VERSION_TWEAK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/ranlib.exe" + }, + { + "name" : "CMAKE_RC_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "RC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/windres.exe" + }, + { + "name" : "CMAKE_RC_COMPILER_WORKS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_RC_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/Qt/Tools/CMake_64/share/cmake-3.27" + }, + { + "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" : "C:/Qt/Tools/mingw1120_64/bin/strip.exe" + }, + { + "name" : "CMAKE_TAPI", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_TAPI-NOTFOUND" + }, + { + "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_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_WrapVulkanHeaders", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding WrapVulkanHeaders" + } + ], + "type" : "INTERNAL", + "value" : "[C:/VulkanSDK/1.3.283.0/Include][v()]" + }, + { + "name" : "HAVE_STDATOMIC", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_STDATOMIC" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "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_CREATOR_SKIP_PACKAGE_MANAGER_SETUP", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Skip Qt Creator's package manager auto-setup" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for QT." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "QT_FEATURE_abstractbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_abstractslider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractslider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "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" : "ON" + }, + { + "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" : "OFF" + }, + { + "name" : "QT_FEATURE_alloca_malloc_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_malloc_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crypto", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crypto (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512bw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512bw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512cd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512cd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512dq", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512dq (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512er", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512er (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512f", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512f (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512ifma", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512ifma (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512pf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512pf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_backtrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: backtrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_buttongroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: buttongroup (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_calendarwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: calendarwidget (from target Qt6::Widgets)" + } + ], + "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_checkbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: checkbox (from target Qt6::Widgets)" + } + ], + "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" : "OFF" + }, + { + "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_colordialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colordialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_colornames", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colornames (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_columnview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: columnview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_combobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: combobox (from target Qt6::Widgets)" + } + ], + "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_commandlinkbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlinkbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_completer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: completer (from target Qt6::Widgets)" + } + ], + "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_contextmenu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: contextmenu (from target Qt6::Widgets)" + } + ], + "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_datawidgetmapper", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datawidgetmapper (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datestring", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datestring (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeedit (from target Qt6::Widgets)" + } + ], + "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" : "OFF" + }, + { + "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_dial", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dial (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialogbuttonbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialogbuttonbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d1_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d1_1 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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" : "ON" + }, + { + "name" : "QT_FEATURE_directwrite3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dladdr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dladdr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dlopen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dlopen (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dockwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dockwidget (from target Qt6::Widgets)" + } + ], + "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_dynamicgl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dynamicgl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_easingcurve", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: easingcurve (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_effects", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: effects (from target Qt6::Widgets)" + } + ], + "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_errormessage", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: errormessage (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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" : "ON" + }, + { + "name" : "QT_FEATURE_filedialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filedialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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_fontcombobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontcombobox (from target Qt6::Widgets)" + } + ], + "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_fontdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_force_asserts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_asserts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_force_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_forkfd_pidfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: forkfd_pidfd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_formlayout", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: formlayout (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_framework", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: framework (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fscompleter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fscompleter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_futimens", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: futimens (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "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" : "OFF" + }, + { + "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" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicseffect", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicseffect (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_graphicsframecapture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsframecapture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicsview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_groupbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: groupbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gtk3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gtk3 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "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_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" : "OFF" + }, + { + "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_inputdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inputdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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_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_itemviews", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemviews (from target Qt6::Widgets)" + } + ], + "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_keysequenceedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: keysequenceedit (from target Qt6::Widgets)" + } + ], + "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_label", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: label (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_largefile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: largefile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lcdnumber", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lcdnumber (from target Qt6::Widgets)" + } + ], + "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_library", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: library (from target Qt6::Core)" + } + ], + "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_lineedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lineedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_linkat", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linkat (from target Qt6::Core)" + } + ], + "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_listview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_listwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listwidget (from target Qt6::Widgets)" + } + ], + "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_mainwindow", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mainwindow (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mdiarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mdiarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_menu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menu (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_menubar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menubar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_messagebox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: messagebox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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" : "OFF" + }, + { + "name" : "QT_FEATURE_network", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: network (from target Qt6::Core)" + } + ], + "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_no_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_pkg_config (from target Qt6::Core)" + } + ], + "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" : "OFF" + }, + { + "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" : "OFF" + }, + { + "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" : "OFF" + }, + { + "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_progressbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_progressdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressdialog (from target Qt6::Widgets)" + } + ], + "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_pushbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pushbutton (from target Qt6::Widgets)" + } + ], + "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_radiobutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: radiobutton (from target Qt6::Widgets)" + } + ], + "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" : "ON" + }, + { + "name" : "QT_FEATURE_rdseed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdseed (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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" : "ON" + }, + { + "name" : "QT_FEATURE_renameat2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: renameat2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_resizehandler", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: resizehandler (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rpath", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rpath (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_rubberband", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rubberband (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scroller", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scroller (from target Qt6::Widgets)" + } + ], + "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" : "ON" + }, + { + "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" : "ON" + }, + { + "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_sizegrip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sizegrip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slog2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slog2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sortfilterproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sortfilterproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_spinbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: spinbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splashscreen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splashscreen (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splitter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splitter (from target Qt6::Widgets)" + } + ], + "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" : "ON" + }, + { + "name" : "QT_FEATURE_sse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_1 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ssse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ssse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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_stackedwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stackedwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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_statusbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statusbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_statustip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statustip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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_style_android", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_android (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_fusion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_fusion (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_mac", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_mac (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_stylesheet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_stylesheet (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows11 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windowsvista", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windowsvista (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syntaxhighlighter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syntaxhighlighter (from target Qt6::Widgets)" + } + ], + "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" : "OFF" + }, + { + "name" : "QT_FEATURE_system_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_libb2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_libb2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "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" : "OFF" + }, + { + "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" : "OFF" + }, + { + "name" : "QT_FEATURE_sysv_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tabbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabbar (from target Qt6::Widgets)" + } + ], + "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_tableview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tableview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tablewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tablewidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabwidget (from target Qt6::Widgets)" + } + ], + "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_textbrowser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textbrowser (from target Qt6::Widgets)" + } + ], + "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_textedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textedit (from target Qt6::Widgets)" + } + ], + "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_toolbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tooltip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tooltip (from target Qt6::Widgets)" + } + ], + "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_treeview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treeview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_treewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treewidget (from target Qt6::Widgets)" + } + ], + "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_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_undoview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undoview (from target Qt6::Widgets)" + } + ], + "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" : "ON" + }, + { + "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_widgettextcontrol", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgettextcontrol (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wizard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wizard (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_x86intrin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: x86intrin (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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" : "OFF" + }, + { + "name" : "QT_QMAKE_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/6.7.0/mingw_64/bin/qmake.exe" + }, + { + "name" : "Qt6CoreTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6CoreTools." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools" + }, + { + "name" : "Qt6Core_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Core." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core" + }, + { + "name" : "Qt6EntryPointPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6EntryPointPrivate." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate" + }, + { + "name" : "Qt6GuiTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6GuiTools." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools" + }, + { + "name" : "Qt6Gui_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Gui." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui" + }, + { + "name" : "Qt6LinguistTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6LinguistTools." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools" + }, + { + "name" : "Qt6WidgetsTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6WidgetsTools." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools" + }, + { + "name" : "Qt6Widgets_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Widgets." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets" + }, + { + "name" : "Qt6ZlibPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6ZlibPrivate." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate" + }, + { + "name" : "Qt6_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/VulkanSDK/1.3.283.0/Bin/glslangValidator.exe" + }, + { + "name" : "Vulkan_GLSLC_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/VulkanSDK/1.3.283.0/Bin/glslc.exe" + }, + { + "name" : "Vulkan_INCLUDE_DIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "C:/VulkanSDK/1.3.283.0/Include" + }, + { + "name" : "Vulkan_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "C:/VulkanSDK/1.3.283.0/Lib/vulkan-1.lib" + }, + { + "name" : "WINDEPLOYQT_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/6.7.0/mingw_64/bin/windeployqt.exe" + }, + { + "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "linker supports push/pop state" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files (x86)/app" + }, + { + "name" : "_Qt6_LINGUIST_TOOLS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools" + }, + { + "name" : "app_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug" + }, + { + "name" : "app_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "app_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "A:/workspace/special-broccoli/app" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cmakeFiles-v1-b3a92729f6213b550f2f.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cmakeFiles-v1-b3a92729f6213b550f2f.json new file mode 100644 index 0000000..78e34bc --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cmakeFiles-v1-b3a92729f6213b550f2f.json @@ -0,0 +1,1094 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeRCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-windres.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX-ABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckIncludeFileCXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/QtInstallPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindVulkan.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeParseArguments.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/GNUInstallDirs.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug", + "source" : "A:/workspace/special-broccoli/app" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-01bbd3e85987d03753c2.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-01bbd3e85987d03753c2.json new file mode 100644 index 0000000..e1a043c --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-01bbd3e85987d03753c2.json @@ -0,0 +1,79 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "hasInstallRule" : true, + "jsonFile" : "directory-.-Debug-f0a3fd4101303fd49436.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "app", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 0, + "id" : "app::@6890427a1f51a3e7e1df", + "jsonFile" : "target-app-Debug-8015cb4ccb5eafe095a8.json", + "name" : "app", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "app_autogen::@6890427a1f51a3e7e1df", + "jsonFile" : "target-app_autogen-Debug-21e7862abd32134d151c.json", + "name" : "app_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "app_autogen_timestamp_deps::@6890427a1f51a3e7e1df", + "jsonFile" : "target-app_autogen_timestamp_deps-Debug-b429327847063c67c71c.json", + "name" : "app_autogen_timestamp_deps", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug", + "source" : "A:/workspace/special-broccoli/app" + }, + "version" : + { + "major" : 2, + "minor" : 6 + } +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-f0a3fd4101303fd49436.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-f0a3fd4101303fd49436.json new file mode 100644 index 0000000..5362b88 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-f0a3fd4101303fd49436.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 79, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "app.exe" + ], + "targetId" : "app::@6890427a1f51a3e7e1df", + "targetIndex" : 0, + "type" : "target" + } + ], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2024-05-23T05-39-29-0514.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2024-05-23T05-39-29-0514.json new file mode 100644 index 0000000..bb73134 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2024-05-23T05-39-29-0514.json @@ -0,0 +1,89 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/Qt/Tools/CMake_64/bin/cmake.exe", + "cpack" : "C:/Qt/Tools/CMake_64/bin/cpack.exe", + "ctest" : "C:/Qt/Tools/CMake_64/bin/ctest.exe", + "root" : "C:/Qt/Tools/CMake_64/share/cmake-3.27" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 27, + "patch" : 7, + "string" : "3.27.7", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-01bbd3e85987d03753c2.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 6 + } + }, + { + "jsonFile" : "cache-v2-83235ff4b0909d90f78a.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-b3a92729f6213b550f2f.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-83235ff4b0909d90f78a.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-b3a92729f6213b550f2f.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-01bbd3e85987d03753c2.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 6 + } + } + } +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-app-Debug-8015cb4ccb5eafe095a8.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-app-Debug-8015cb4ccb5eafe095a8.json new file mode 100644 index 0000000..8c20707 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-app-Debug-8015cb4ccb5eafe095a8.json @@ -0,0 +1,633 @@ +{ + "artifacts" : + [ + { + "path" : "app.exe" + }, + { + "path" : "app.pdb" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "_qt_internal_create_executable", + "qt6_add_executable", + "qt_add_executable", + "install", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "find_dependency", + "_qt_internal_find_qt_dependencies" + ], + "files" : + [ + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "CMakeLists.txt", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 26, + "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" : 79, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 62, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 13, + "parent" : 0 + }, + { + "file" : 4, + "parent" : 7 + }, + { + "command" : 8, + "file" : 4, + "line" : 167, + "parent" : 8 + }, + { + "file" : 3, + "parent" : 9 + }, + { + "command" : 7, + "file" : 3, + "line" : 55, + "parent" : 10 + }, + { + "file" : 2, + "parent" : 11 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 12 + }, + { + "command" : 5, + "file" : 0, + "line" : 576, + "parent" : 2 + }, + { + "command" : 7, + "file" : 3, + "line" : 43, + "parent" : 10 + }, + { + "file" : 9, + "parent" : 15 + }, + { + "command" : 10, + "file" : 9, + "line" : 42, + "parent" : 16 + }, + { + "command" : 9, + "file" : 8, + "line" : 111, + "parent" : 17 + }, + { + "command" : 8, + "file" : 7, + "line" : 76, + "parent" : 18 + }, + { + "file" : 6, + "parent" : 19 + }, + { + "command" : 7, + "file" : 6, + "line" : 57, + "parent" : 20 + }, + { + "file" : 5, + "parent" : 21 + }, + { + "command" : 6, + "file" : 5, + "line" : 61, + "parent" : 22 + }, + { + "command" : 7, + "file" : 6, + "line" : 45, + "parent" : 20 + }, + { + "file" : 12, + "parent" : 24 + }, + { + "command" : 10, + "file" : 12, + "line" : 42, + "parent" : 25 + }, + { + "command" : 9, + "file" : 8, + "line" : 111, + "parent" : 26 + }, + { + "command" : 8, + "file" : 7, + "line" : 76, + "parent" : 27 + }, + { + "file" : 11, + "parent" : 28 + }, + { + "command" : 7, + "file" : 11, + "line" : 55, + "parent" : 29 + }, + { + "file" : 10, + "parent" : 30 + }, + { + "command" : 6, + "file" : 10, + "line" : 61, + "parent" : 31 + }, + { + "command" : 6, + "file" : 10, + "line" : 76, + "parent" : 31 + }, + { + "command" : 9, + "file" : 8, + "line" : 111, + "parent" : 17 + }, + { + "command" : 8, + "file" : 7, + "line" : 76, + "parent" : 34 + }, + { + "file" : 14, + "parent" : 35 + }, + { + "command" : 7, + "file" : 14, + "line" : 55, + "parent" : 36 + }, + { + "file" : 13, + "parent" : 37 + }, + { + "command" : 6, + "file" : 13, + "line" : 61, + "parent" : 38 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 14, + "define" : "MINGW_HAS_SECURE_API=1" + }, + { + "backtrace" : 14, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 14, + "define" : "QT_NEEDS_QMAIN" + }, + { + "backtrace" : 6, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 14, + "define" : "UNICODE" + }, + { + "backtrace" : 14, + "define" : "WIN32" + }, + { + "backtrace" : 14, + "define" : "WIN64" + }, + { + "backtrace" : 14, + "define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE" + }, + { + "backtrace" : 14, + "define" : "_UNICODE" + }, + { + "backtrace" : 14, + "define" : "_WIN64" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include" + }, + { + "backtrace" : 14, + "isSystem" : true, + "path" : "C:/Qt/6.7.0/mingw_64/include/QtCore" + }, + { + "backtrace" : 14, + "isSystem" : true, + "path" : "C:/Qt/6.7.0/mingw_64/include" + }, + { + "backtrace" : 14, + "isSystem" : true, + "path" : "C:/Qt/6.7.0/mingw_64/mkspecs/win32-g++" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/Qt/6.7.0/mingw_64/include/QtWidgets" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/Qt/6.7.0/mingw_64/include/QtGui" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/VulkanSDK/1.3.283.0/Include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 14, + 14 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 6, + 9 + ] + } + ], + "dependencies" : + [ + { + "id" : "app_autogen_timestamp_deps::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 0, + "id" : "app_autogen::@6890427a1f51a3e7e1df" + } + ], + "id" : "app::@6890427a1f51a3e7e1df", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/app" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g", + "role" : "flags" + }, + { + "fragment" : "-mwindows", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "C:\\Qt\\6.7.0\\mingw_64\\lib\\libQt6Widgets.a", + "role" : "libraries" + }, + { + "backtrace" : 13, + "fragment" : "C:\\Qt\\6.7.0\\mingw_64\\lib\\libQt6Gui.a", + "role" : "libraries" + }, + { + "backtrace" : 14, + "fragment" : "C:\\Qt\\6.7.0\\mingw_64\\lib\\libQt6Core.a", + "role" : "libraries" + }, + { + "backtrace" : 23, + "fragment" : "-lmpr", + "role" : "libraries" + }, + { + "backtrace" : 23, + "fragment" : "-luserenv", + "role" : "libraries" + }, + { + "backtrace" : 32, + "fragment" : "-lmingw32", + "role" : "libraries" + }, + { + "backtrace" : 32, + "fragment" : "C:\\Qt\\6.7.0\\mingw_64\\lib\\libQt6EntryPoint.a", + "role" : "libraries" + }, + { + "backtrace" : 33, + "fragment" : "-lshell32", + "role" : "libraries" + }, + { + "backtrace" : 39, + "fragment" : "-ld3d11", + "role" : "libraries" + }, + { + "backtrace" : 39, + "fragment" : "-ldxgi", + "role" : "libraries" + }, + { + "backtrace" : 39, + "fragment" : "-ldxguid", + "role" : "libraries" + }, + { + "backtrace" : 39, + "fragment" : "-ld3d12", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "app", + "nameOnDisk" : "app.exe", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 6, + 9 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 5, + 8, + 12, + 13, + 14 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 4, + 7, + 10, + 11, + 15 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 16 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "main.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "mainwindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "mainwindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "app_fr_FR.ts", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "playerbox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "playerbox.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "playerbox.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "scoreboard.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "scoreboard.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "scoreboard.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "mainwindow.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include/ui_playerbox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include/ui_scoreboard.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include/ui_mainwindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "EXECUTABLE" +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-app_autogen-Debug-21e7862abd32134d151c.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-app_autogen-Debug-21e7862abd32134d151c.json new file mode 100644 index 0000000..2f97dee --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-app_autogen-Debug-21e7862abd32134d151c.json @@ -0,0 +1,71 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "app_autogen_timestamp_deps::@6890427a1f51a3e7e1df" + } + ], + "id" : "app_autogen::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "app_autogen", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-app_autogen_timestamp_deps-Debug-b429327847063c67c71c.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-app_autogen_timestamp_deps-Debug-b429327847063c67c71c.json new file mode 100644 index 0000000..3526073 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-app_autogen_timestamp_deps-Debug-b429327847063c67c71c.json @@ -0,0 +1,58 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "id" : "app_autogen_timestamp_deps::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "app_autogen_timestamp_deps", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cache-v2-83235ff4b0909d90f78a.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cache-v2-83235ff4b0909d90f78a.json new file mode 100644 index 0000000..25f7c50 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cache-v2-83235ff4b0909d90f78a.json @@ -0,0 +1,6259 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/addr2line.exe" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/ar.exe" + }, + { + "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" : "a:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug" + }, + { + "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" : "7" + }, + { + "name" : "CMAKE_COLOR_DIAGNOSTICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable colored diagnostics throughout." + } + ], + "type" : "BOOL", + "value" : "1" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Qt/Tools/CMake_64/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Qt/Tools/CMake_64/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Qt/Tools/CMake_64/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "STRING", + "value" : "C:/Qt/Tools/mingw1120_64/bin/g++.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/gcc-ar.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/gcc-ranlib.exe" + }, + { + "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" : "-DQT_QML_DEBUG" + }, + { + "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_INIT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "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_CXX_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : ".obj" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/gcc.exe" + }, + { + "name" : "CMAKE_C_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/dlltool.exe" + }, + { + "name" : "CMAKE_EDIT_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cache edit program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Qt/Tools/CMake_64/bin/cmake-gui.exe" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "Unknown" + }, + { + "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" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable output of compile commands during generation." + } + ], + "type" : "BOOL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Ninja" + }, + { + "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_GNUtoMS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Convert GNU import libraries to MS format (requires Visual Studio)" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "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" : "A:/workspace/special-broccoli/app" + }, + { + "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_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" : "C:/Program Files (x86)/app" + }, + { + "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" : "C:/Qt/Tools/mingw1120_64/bin/ld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program used to build from build.ninja files." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/Ninja/ninja.exe" + }, + { + "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" : "C:/Qt/Tools/mingw1120_64/bin/nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/objdump.exe" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64" + }, + { + "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_INCLUDE_BEFORE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "app" + }, + { + "name" : "CMAKE_PROJECT_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0.1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MAJOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MINOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_PATCH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_VERSION_TWEAK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/ranlib.exe" + }, + { + "name" : "CMAKE_RC_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "RC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/windres.exe" + }, + { + "name" : "CMAKE_RC_COMPILER_WORKS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_RC_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/Tools/mingw1120_64/bin/readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/Qt/Tools/CMake_64/share/cmake-3.27" + }, + { + "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" : "C:/Qt/Tools/mingw1120_64/bin/strip.exe" + }, + { + "name" : "CMAKE_TAPI", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_TAPI-NOTFOUND" + }, + { + "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_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_WrapVulkanHeaders", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding WrapVulkanHeaders" + } + ], + "type" : "INTERNAL", + "value" : "[C:/VulkanSDK/1.3.283.0/Include][v()]" + }, + { + "name" : "HAVE_STDATOMIC", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_STDATOMIC" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "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_CREATOR_SKIP_PACKAGE_MANAGER_SETUP", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Skip Qt Creator's package manager auto-setup" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for QT." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "QT_FEATURE_abstractbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_abstractslider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractslider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "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" : "ON" + }, + { + "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" : "OFF" + }, + { + "name" : "QT_FEATURE_alloca_malloc_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_malloc_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crypto", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crypto (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512bw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512bw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512cd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512cd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512dq", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512dq (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512er", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512er (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512f", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512f (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512ifma", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512ifma (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512pf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512pf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_backtrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: backtrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_buttongroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: buttongroup (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_calendarwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: calendarwidget (from target Qt6::Widgets)" + } + ], + "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_checkbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: checkbox (from target Qt6::Widgets)" + } + ], + "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" : "OFF" + }, + { + "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_colordialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colordialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_colornames", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colornames (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_columnview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: columnview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_combobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: combobox (from target Qt6::Widgets)" + } + ], + "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_commandlinkbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlinkbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_completer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: completer (from target Qt6::Widgets)" + } + ], + "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_contextmenu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: contextmenu (from target Qt6::Widgets)" + } + ], + "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_datawidgetmapper", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datawidgetmapper (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datestring", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datestring (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeedit (from target Qt6::Widgets)" + } + ], + "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" : "OFF" + }, + { + "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_dial", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dial (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialogbuttonbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialogbuttonbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d1_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d1_1 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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" : "ON" + }, + { + "name" : "QT_FEATURE_directwrite3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dladdr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dladdr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dlopen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dlopen (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dockwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dockwidget (from target Qt6::Widgets)" + } + ], + "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_dynamicgl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dynamicgl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_easingcurve", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: easingcurve (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_effects", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: effects (from target Qt6::Widgets)" + } + ], + "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_errormessage", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: errormessage (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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" : "ON" + }, + { + "name" : "QT_FEATURE_filedialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filedialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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_fontcombobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontcombobox (from target Qt6::Widgets)" + } + ], + "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_fontdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_force_asserts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_asserts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_force_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_forkfd_pidfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: forkfd_pidfd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_formlayout", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: formlayout (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_framework", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: framework (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fscompleter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fscompleter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_futimens", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: futimens (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "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" : "OFF" + }, + { + "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" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicseffect", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicseffect (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_graphicsframecapture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsframecapture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicsview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_groupbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: groupbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gtk3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gtk3 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "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_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" : "OFF" + }, + { + "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_inputdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inputdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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_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_itemviews", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemviews (from target Qt6::Widgets)" + } + ], + "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_keysequenceedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: keysequenceedit (from target Qt6::Widgets)" + } + ], + "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_label", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: label (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_largefile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: largefile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lcdnumber", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lcdnumber (from target Qt6::Widgets)" + } + ], + "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_library", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: library (from target Qt6::Core)" + } + ], + "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_lineedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lineedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_linkat", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linkat (from target Qt6::Core)" + } + ], + "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_listview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_listwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listwidget (from target Qt6::Widgets)" + } + ], + "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_mainwindow", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mainwindow (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mdiarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mdiarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_menu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menu (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_menubar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menubar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_messagebox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: messagebox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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" : "OFF" + }, + { + "name" : "QT_FEATURE_network", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: network (from target Qt6::Core)" + } + ], + "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_no_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_pkg_config (from target Qt6::Core)" + } + ], + "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" : "OFF" + }, + { + "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" : "OFF" + }, + { + "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" : "OFF" + }, + { + "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_progressbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_progressdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressdialog (from target Qt6::Widgets)" + } + ], + "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_pushbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pushbutton (from target Qt6::Widgets)" + } + ], + "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_radiobutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: radiobutton (from target Qt6::Widgets)" + } + ], + "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" : "ON" + }, + { + "name" : "QT_FEATURE_rdseed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdseed (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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" : "ON" + }, + { + "name" : "QT_FEATURE_renameat2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: renameat2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_resizehandler", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: resizehandler (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rpath", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rpath (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_rubberband", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rubberband (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scroller", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scroller (from target Qt6::Widgets)" + } + ], + "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" : "ON" + }, + { + "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" : "ON" + }, + { + "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_sizegrip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sizegrip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slog2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slog2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sortfilterproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sortfilterproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_spinbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: spinbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splashscreen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splashscreen (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splitter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splitter (from target Qt6::Widgets)" + } + ], + "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" : "ON" + }, + { + "name" : "QT_FEATURE_sse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_1 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ssse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ssse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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_stackedwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stackedwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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_statusbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statusbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_statustip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statustip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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_style_android", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_android (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_fusion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_fusion (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_mac", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_mac (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_stylesheet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_stylesheet (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows11 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windowsvista", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windowsvista (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syntaxhighlighter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syntaxhighlighter (from target Qt6::Widgets)" + } + ], + "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" : "OFF" + }, + { + "name" : "QT_FEATURE_system_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_libb2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_libb2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "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" : "OFF" + }, + { + "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" : "OFF" + }, + { + "name" : "QT_FEATURE_sysv_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tabbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabbar (from target Qt6::Widgets)" + } + ], + "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_tableview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tableview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tablewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tablewidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabwidget (from target Qt6::Widgets)" + } + ], + "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_textbrowser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textbrowser (from target Qt6::Widgets)" + } + ], + "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_textedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textedit (from target Qt6::Widgets)" + } + ], + "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_toolbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tooltip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tooltip (from target Qt6::Widgets)" + } + ], + "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_treeview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treeview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_treewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treewidget (from target Qt6::Widgets)" + } + ], + "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_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_undoview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undoview (from target Qt6::Widgets)" + } + ], + "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" : "ON" + }, + { + "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_widgettextcontrol", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgettextcontrol (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wizard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wizard (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_x86intrin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: x86intrin (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "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" : "OFF" + }, + { + "name" : "QT_QMAKE_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/6.7.0/mingw_64/bin/qmake.exe" + }, + { + "name" : "Qt6CoreTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6CoreTools." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools" + }, + { + "name" : "Qt6Core_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Core." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core" + }, + { + "name" : "Qt6EntryPointPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6EntryPointPrivate." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate" + }, + { + "name" : "Qt6GuiTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6GuiTools." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools" + }, + { + "name" : "Qt6Gui_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Gui." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui" + }, + { + "name" : "Qt6LinguistTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6LinguistTools." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools" + }, + { + "name" : "Qt6WidgetsTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6WidgetsTools." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools" + }, + { + "name" : "Qt6Widgets_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Widgets." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets" + }, + { + "name" : "Qt6ZlibPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6ZlibPrivate." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate" + }, + { + "name" : "Qt6_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6." + } + ], + "type" : "PATH", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/VulkanSDK/1.3.283.0/Bin/glslangValidator.exe" + }, + { + "name" : "Vulkan_GLSLC_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/VulkanSDK/1.3.283.0/Bin/glslc.exe" + }, + { + "name" : "Vulkan_INCLUDE_DIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "C:/VulkanSDK/1.3.283.0/Include" + }, + { + "name" : "Vulkan_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "C:/VulkanSDK/1.3.283.0/Lib/vulkan-1.lib" + }, + { + "name" : "WINDEPLOYQT_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Qt/6.7.0/mingw_64/bin/windeployqt.exe" + }, + { + "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "linker supports push/pop state" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files (x86)/app" + }, + { + "name" : "_Qt6_LINGUIST_TOOLS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools" + }, + { + "name" : "app_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug" + }, + { + "name" : "app_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "app_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "A:/workspace/special-broccoli/app" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cmakeFiles-v1-b3a92729f6213b550f2f.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cmakeFiles-v1-b3a92729f6213b550f2f.json new file mode 100644 index 0000000..78e34bc --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cmakeFiles-v1-b3a92729f6213b550f2f.json @@ -0,0 +1,1094 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeRCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-windres.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX-ABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckIncludeFileCXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/QtInstallPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindVulkan.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeParseArguments.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/GNUInstallDirs.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug", + "source" : "A:/workspace/special-broccoli/app" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-9cd71ffaee1b7968cfac.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-9cd71ffaee1b7968cfac.json new file mode 100644 index 0000000..79eead9 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-9cd71ffaee1b7968cfac.json @@ -0,0 +1,79 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "hasInstallRule" : true, + "jsonFile" : "directory-.-Debug-00600251aa94943b6b71.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "app", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 0, + "id" : "app::@6890427a1f51a3e7e1df", + "jsonFile" : "target-app-Debug-5b34c8ab3d0f52e5d064.json", + "name" : "app", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "app_autogen::@6890427a1f51a3e7e1df", + "jsonFile" : "target-app_autogen-Debug-21e7862abd32134d151c.json", + "name" : "app_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "app_autogen_timestamp_deps::@6890427a1f51a3e7e1df", + "jsonFile" : "target-app_autogen_timestamp_deps-Debug-b429327847063c67c71c.json", + "name" : "app_autogen_timestamp_deps", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug", + "source" : "A:/workspace/special-broccoli/app" + }, + "version" : + { + "major" : 2, + "minor" : 6 + } +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-00600251aa94943b6b71.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-00600251aa94943b6b71.json new file mode 100644 index 0000000..5aedd71 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-00600251aa94943b6b71.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 80, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "app.exe" + ], + "targetId" : "app::@6890427a1f51a3e7e1df", + "targetIndex" : 0, + "type" : "target" + } + ], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2024-05-23T05-40-13-0212.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2024-05-23T05-40-13-0212.json new file mode 100644 index 0000000..51d3950 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2024-05-23T05-40-13-0212.json @@ -0,0 +1,89 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/Qt/Tools/CMake_64/bin/cmake.exe", + "cpack" : "C:/Qt/Tools/CMake_64/bin/cpack.exe", + "ctest" : "C:/Qt/Tools/CMake_64/bin/ctest.exe", + "root" : "C:/Qt/Tools/CMake_64/share/cmake-3.27" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 27, + "patch" : 7, + "string" : "3.27.7", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-9cd71ffaee1b7968cfac.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 6 + } + }, + { + "jsonFile" : "cache-v2-83235ff4b0909d90f78a.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-b3a92729f6213b550f2f.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-83235ff4b0909d90f78a.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-b3a92729f6213b550f2f.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-9cd71ffaee1b7968cfac.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 6 + } + } + } +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-app-Debug-5b34c8ab3d0f52e5d064.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-app-Debug-5b34c8ab3d0f52e5d064.json new file mode 100644 index 0000000..e9b4e7d --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-app-Debug-5b34c8ab3d0f52e5d064.json @@ -0,0 +1,660 @@ +{ + "artifacts" : + [ + { + "path" : "app.exe" + }, + { + "path" : "app.pdb" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "_qt_internal_create_executable", + "qt6_add_executable", + "qt_add_executable", + "install", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "find_dependency", + "_qt_internal_find_qt_dependencies" + ], + "files" : + [ + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "CMakeLists.txt", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 26, + "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" : 80, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 63, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 13, + "parent" : 0 + }, + { + "file" : 4, + "parent" : 7 + }, + { + "command" : 8, + "file" : 4, + "line" : 167, + "parent" : 8 + }, + { + "file" : 3, + "parent" : 9 + }, + { + "command" : 7, + "file" : 3, + "line" : 55, + "parent" : 10 + }, + { + "file" : 2, + "parent" : 11 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 12 + }, + { + "command" : 5, + "file" : 0, + "line" : 576, + "parent" : 2 + }, + { + "command" : 7, + "file" : 3, + "line" : 43, + "parent" : 10 + }, + { + "file" : 9, + "parent" : 15 + }, + { + "command" : 10, + "file" : 9, + "line" : 42, + "parent" : 16 + }, + { + "command" : 9, + "file" : 8, + "line" : 111, + "parent" : 17 + }, + { + "command" : 8, + "file" : 7, + "line" : 76, + "parent" : 18 + }, + { + "file" : 6, + "parent" : 19 + }, + { + "command" : 7, + "file" : 6, + "line" : 57, + "parent" : 20 + }, + { + "file" : 5, + "parent" : 21 + }, + { + "command" : 6, + "file" : 5, + "line" : 61, + "parent" : 22 + }, + { + "command" : 7, + "file" : 6, + "line" : 45, + "parent" : 20 + }, + { + "file" : 12, + "parent" : 24 + }, + { + "command" : 10, + "file" : 12, + "line" : 42, + "parent" : 25 + }, + { + "command" : 9, + "file" : 8, + "line" : 111, + "parent" : 26 + }, + { + "command" : 8, + "file" : 7, + "line" : 76, + "parent" : 27 + }, + { + "file" : 11, + "parent" : 28 + }, + { + "command" : 7, + "file" : 11, + "line" : 55, + "parent" : 29 + }, + { + "file" : 10, + "parent" : 30 + }, + { + "command" : 6, + "file" : 10, + "line" : 61, + "parent" : 31 + }, + { + "command" : 6, + "file" : 10, + "line" : 76, + "parent" : 31 + }, + { + "command" : 9, + "file" : 8, + "line" : 111, + "parent" : 17 + }, + { + "command" : 8, + "file" : 7, + "line" : 76, + "parent" : 34 + }, + { + "file" : 14, + "parent" : 35 + }, + { + "command" : 7, + "file" : 14, + "line" : 55, + "parent" : 36 + }, + { + "file" : 13, + "parent" : 37 + }, + { + "command" : 6, + "file" : 13, + "line" : 61, + "parent" : 38 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 14, + "define" : "MINGW_HAS_SECURE_API=1" + }, + { + "backtrace" : 14, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 14, + "define" : "QT_NEEDS_QMAIN" + }, + { + "backtrace" : 6, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 14, + "define" : "UNICODE" + }, + { + "backtrace" : 14, + "define" : "WIN32" + }, + { + "backtrace" : 14, + "define" : "WIN64" + }, + { + "backtrace" : 14, + "define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE" + }, + { + "backtrace" : 14, + "define" : "_UNICODE" + }, + { + "backtrace" : 14, + "define" : "_WIN64" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include" + }, + { + "backtrace" : 14, + "isSystem" : true, + "path" : "C:/Qt/6.7.0/mingw_64/include/QtCore" + }, + { + "backtrace" : 14, + "isSystem" : true, + "path" : "C:/Qt/6.7.0/mingw_64/include" + }, + { + "backtrace" : 14, + "isSystem" : true, + "path" : "C:/Qt/6.7.0/mingw_64/mkspecs/win32-g++" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/Qt/6.7.0/mingw_64/include/QtWidgets" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/Qt/6.7.0/mingw_64/include/QtGui" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/VulkanSDK/1.3.283.0/Include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 14, + 14 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 6, + 9, + 13 + ] + } + ], + "dependencies" : + [ + { + "id" : "app_autogen_timestamp_deps::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 0, + "id" : "app_autogen::@6890427a1f51a3e7e1df" + } + ], + "id" : "app::@6890427a1f51a3e7e1df", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/app" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g", + "role" : "flags" + }, + { + "fragment" : "-mwindows", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "C:\\Qt\\6.7.0\\mingw_64\\lib\\libQt6Widgets.a", + "role" : "libraries" + }, + { + "backtrace" : 13, + "fragment" : "C:\\Qt\\6.7.0\\mingw_64\\lib\\libQt6Gui.a", + "role" : "libraries" + }, + { + "backtrace" : 14, + "fragment" : "C:\\Qt\\6.7.0\\mingw_64\\lib\\libQt6Core.a", + "role" : "libraries" + }, + { + "backtrace" : 23, + "fragment" : "-lmpr", + "role" : "libraries" + }, + { + "backtrace" : 23, + "fragment" : "-luserenv", + "role" : "libraries" + }, + { + "backtrace" : 32, + "fragment" : "-lmingw32", + "role" : "libraries" + }, + { + "backtrace" : 32, + "fragment" : "C:\\Qt\\6.7.0\\mingw_64\\lib\\libQt6EntryPoint.a", + "role" : "libraries" + }, + { + "backtrace" : 33, + "fragment" : "-lshell32", + "role" : "libraries" + }, + { + "backtrace" : 39, + "fragment" : "-ld3d11", + "role" : "libraries" + }, + { + "backtrace" : 39, + "fragment" : "-ldxgi", + "role" : "libraries" + }, + { + "backtrace" : 39, + "fragment" : "-ldxguid", + "role" : "libraries" + }, + { + "backtrace" : 39, + "fragment" : "-ld3d12", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "app", + "nameOnDisk" : "app.exe", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 6, + 9, + 13 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 5, + 8, + 12, + 15, + 16, + 17, + 18 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 4, + 7, + 10, + 11, + 14, + 19 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 20 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "main.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "mainwindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "mainwindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "app_fr_FR.ts", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "playerbox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "playerbox.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "playerbox.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "scoreboard.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "scoreboard.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "scoreboard.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "mainwindow.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "matchui.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "matchui.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "matchui.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include/ui_playerbox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include/ui_scoreboard.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include/ui_mainwindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include/ui_matchui.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "EXECUTABLE" +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-app_autogen-Debug-21e7862abd32134d151c.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-app_autogen-Debug-21e7862abd32134d151c.json new file mode 100644 index 0000000..2f97dee --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-app_autogen-Debug-21e7862abd32134d151c.json @@ -0,0 +1,71 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "app_autogen_timestamp_deps::@6890427a1f51a3e7e1df" + } + ], + "id" : "app_autogen::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "app_autogen", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-app_autogen_timestamp_deps-Debug-b429327847063c67c71c.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-app_autogen_timestamp_deps-Debug-b429327847063c67c71c.json new file mode 100644 index 0000000..3526073 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-app_autogen_timestamp_deps-Debug-b429327847063c67c71c.json @@ -0,0 +1,58 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "id" : "app_autogen_timestamp_deps::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "app_autogen_timestamp_deps", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.ninja_deps b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.ninja_deps new file mode 100644 index 0000000..79b818b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.ninja_deps differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.ninja_log b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.ninja_log new file mode 100644 index 0000000..6f6ea4e --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.ninja_log @@ -0,0 +1,16 @@ +# ninja log v5 +2158 6062 7381445153805036 CMakeFiles/app.dir/scoreboard.cpp.obj 928d72728e014831 +10 145 0 A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs f7b2c63e7c1d25e6 +12 2077 7381445112956527 app_autogen/mocs_compilation.cpp f1f4bd759f55629 +12 2077 7381445112956527 A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/mocs_compilation.cpp f1f4bd759f55629 +12 2077 7381445112956527 app_autogen/timestamp f1f4bd759f55629 +12 2077 7381445112956527 A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/timestamp f1f4bd759f55629 +3362 14160 7378546153296980 CMakeFiles/app.dir/app_autogen/mocs_compilation.cpp.obj 8bfa938306525eab +1122 14513 7378549054914358 CMakeFiles/app.dir/mainwindow.cpp.obj 2bd0a9a134866126 +2105 7591 7381445169096631 CMakeFiles/app.dir/main.cpp.obj 9894fbe0b5b82225 +7313 8113 7378949476530436 app.exe 559cbe551b534ee3 +246 2365 7381460130901369 build.ninja 80f06d7230dc2386 +2086 8210 7381445175276666 CMakeFiles/app.dir/playerbox.cpp.obj 58778f74bb45c4f7 +2097 5878 7381445151950088 CMakeFiles/app.dir/player.cpp.obj 89d9f462cf2e24b6 +2125 6034 7381445153519289 CMakeFiles/app.dir/matchresult.cpp.obj 9bac702ab6343d81 +2136 6303 7381445156215847 CMakeFiles/app.dir/match.cpp.obj bec278d537720380 diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qt/QtDeploySupport.cmake b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qt/QtDeploySupport.cmake new file mode 100644 index 0000000..2376d6c --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qt/QtDeploySupport.cmake @@ -0,0 +1,69 @@ +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 "Windows") +set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON") +set(__QT_DEPLOY_TOOL "C:/Qt/6.7.0/mingw_64/bin/windeployqt.exe") +set(__QT_DEPLOY_IMPL_DIR "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.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 "C:/Qt/6.7.0/mingw_64") +set(__QT_DEPLOY_QT_INSTALL_BINS "bin") +set(__QT_DEPLOY_QT_INSTALL_DATA ".") +set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "./bin") +set(__QT_DEPLOY_QT_INSTALL_PLUGINS "./plugins") +set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "./translations") +set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "C:/Qt/6.7.0/mingw_64/bin/qtpaths.exe") +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 + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qt/QtDeployTargets.cmake" + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDeploySupport.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/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qt/QtDeployTargets.cmake b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qt/QtDeployTargets.cmake new file mode 100644 index 0000000..39d62c5 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qt/QtDeployTargets.cmake @@ -0,0 +1,2 @@ +set(__QT_DEPLOY_TARGET_app_FILE A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app.exe) +set(__QT_DEPLOY_TARGET_app_RUNTIME_DLLS C:/Qt/6.7.0/mingw_64/bin/Qt6Widgets.dll;C:/Qt/6.7.0/mingw_64/bin/Qt6Gui.dll;C:/Qt/6.7.0/mingw_64/bin/Qt6Core.dll) diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/LICENSE.conan b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/LICENSE.conan new file mode 100644 index 0000000..541f5a3 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/LICENSE.conan @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2019 JFrog + +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. diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake new file mode 100644 index 0000000..628b69c --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake @@ -0,0 +1,269 @@ +# +# Internal Qt Creator variable reference +# +foreach(qtcreator_var + QT_QMAKE_EXECUTABLE CMAKE_PREFIX_PATH CMAKE_C_COMPILER CMAKE_CXX_COMPILER + CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO) + set(__just_reference_${qtcreator_var} ${${qtcreator_var}}) +endforeach() + +if (EXISTS "${CMAKE_SOURCE_DIR}/QtCreatorPackageManager.cmake") + include("${CMAKE_SOURCE_DIR}/QtCreatorPackageManager.cmake") +endif() + +if (QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP) + return() +endif() +option(QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP "Skip Qt Creator's package manager auto-setup" OFF) + +# Store the C/C++ object output extension +if (CMAKE_VERSION GREATER_EQUAL "3.19") + cmake_language(DEFER CALL set CMAKE_C_OUTPUT_EXTENSION "${CMAKE_C_OUTPUT_EXTENSION}" CACHE STRING "" FORCE) + cmake_language(DEFER CALL set CMAKE_CXX_OUTPUT_EXTENSION "${CMAKE_CXX_OUTPUT_EXTENSION}" CACHE STRING "" FORCE) +endif() + +macro(qtc_auto_setup_compiler_standard toolchainFile) + foreach(lang_var C CXX CUDA OBJC OBJCXX) + foreach(prop_var STANDARD STANDARD_REQUIRED EXTENSIONS) + if (CMAKE_${lang_var}_${prop_var}) + file(APPEND "${toolchainFile}" + "set(CMAKE_${lang_var}_${prop_var} ${CMAKE_${lang_var}_${prop_var}})\n") + endif() + endforeach() + endforeach() + + # Forward important CMake variables to the package manager in the toolchain file + foreach(fwd_var CMAKE_MSVC_RUNTIME_LIBRARY CMAKE_SYSROOT CMAKE_OSX_SYSROOT CMAKE_OSX_ARCHITECTURES) + if (${fwd_var}) + file(APPEND "${toolchainFile}" + "set(${fwd_var} ${${fwd_var}})\n") + endif() + endforeach() +endmacro() + +# +# conan +# +macro(qtc_auto_setup_conan) + foreach(file conanfile.txt conanfile.py) + if (EXISTS "${CMAKE_SOURCE_DIR}/${file}") + set(conanfile_txt "${CMAKE_SOURCE_DIR}/${file}") + break() + endif() + endforeach() + + if (conanfile_txt AND NOT QT_CREATOR_SKIP_CONAN_SETUP) + option(QT_CREATOR_SKIP_CONAN_SETUP "Skip Qt Creator's conan package manager auto-setup" OFF) + set(QT_CREATOR_CONAN_BUILD_POLICY "missing" CACHE STRING "Qt Creator's conan package manager auto-setup build policy. This is used for the BUILD property of cmake_conan_run") + + find_program(conan_program conan) + if (NOT conan_program) + message(WARNING "Qt Creator: conan executable not found. " + "Package manager auto-setup will be skipped. " + "To disable this warning set QT_CREATOR_SKIP_CONAN_SETUP to ON.") + return() + endif() + execute_process(COMMAND ${conan_program} --version + RESULT_VARIABLE result_code + OUTPUT_VARIABLE conan_version_output + ERROR_VARIABLE conan_version_output) + if (NOT result_code EQUAL 0) + message(FATAL_ERROR "conan --version failed='${result_code}: ${conan_version_output}") + endif() + + string(REGEX REPLACE ".*Conan version ([0-9].[0-9]).*" "\\1" conan_version "${conan_version_output}") + + set(conanfile_timestamp_file "${CMAKE_BINARY_DIR}/conan-dependencies/conanfile.timestamp") + file(TIMESTAMP "${conanfile_txt}" conanfile_timestamp) + + set(do_conan_installation ON) + if (EXISTS "${conanfile_timestamp_file}") + file(READ "${conanfile_timestamp_file}" old_conanfile_timestamp) + if ("${conanfile_timestamp}" STREQUAL "${old_conanfile_timestamp}") + set(do_conan_installation OFF) + endif() + endif() + + set(conanfile_build_policy_file "${CMAKE_BINARY_DIR}/conan-dependencies/conanfile.buildpolicy") + if (EXISTS "${conanfile_build_policy_file}") + file(READ "${conanfile_build_policy_file}" build_policy) + if (NOT "${build_policy}" STREQUAL "${QT_CREATOR_CONAN_BUILD_POLICY}") + set(do_conan_installation ON) + endif() + endif() + + if (do_conan_installation) + message(STATUS "Qt Creator: conan package manager auto-setup. " + "Skip this step by setting QT_CREATOR_SKIP_CONAN_SETUP to ON.") + + file(COPY "${conanfile_txt}" DESTINATION "${CMAKE_BINARY_DIR}/conan-dependencies/") + + file(WRITE "${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" " + set(CMAKE_C_COMPILER \"${CMAKE_C_COMPILER}\") + set(CMAKE_CXX_COMPILER \"${CMAKE_CXX_COMPILER}\") + ") + qtc_auto_setup_compiler_standard("${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake") + + if (CMAKE_TOOLCHAIN_FILE) + file(APPEND "${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" + "include(\"${CMAKE_TOOLCHAIN_FILE}\")\n") + endif() + + file(WRITE "${CMAKE_BINARY_DIR}/conan-dependencies/CMakeLists.txt" " + cmake_minimum_required(VERSION 3.15) + + unset(CMAKE_PROJECT_INCLUDE_BEFORE CACHE) + project(conan-setup) + + if (${conan_version} VERSION_GREATER_EQUAL 2.0) + set(CONAN_COMMAND \"${conan_program}\") + include(\"${CMAKE_CURRENT_LIST_DIR}/conan_provider.cmake\") + conan_profile_detect_default() + detect_host_profile(\"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\") + + set(build_types \${CMAKE_BUILD_TYPE}) + if (CMAKE_CONFIGURATION_TYPES) + set(build_types \${CMAKE_CONFIGURATION_TYPES}) + endif() + + foreach(type \${build_types}) + conan_install( + -pr \"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\" + --build=${QT_CREATOR_CONAN_BUILD_POLICY} + -s build_type=\${type} + -g CMakeDeps) + endforeach() + + get_property(CONAN_INSTALL_SUCCESS GLOBAL PROPERTY CONAN_INSTALL_SUCCESS) + if (CONAN_INSTALL_SUCCESS) + get_property(CONAN_GENERATORS_FOLDER GLOBAL PROPERTY CONAN_GENERATORS_FOLDER) + file(TO_CMAKE_PATH \"\${CONAN_GENERATORS_FOLDER}\" CONAN_GENERATORS_FOLDER) + file(WRITE \"${CMAKE_BINARY_DIR}/conan-dependencies/conan_paths.cmake\" \" + list(PREPEND CMAKE_PREFIX_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") + list(PREPEND CMAKE_MODULE_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") + list(PREPEND CMAKE_FIND_ROOT_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") + list(REMOVE_DUPLICATES CMAKE_PREFIX_PATH) + list(REMOVE_DUPLICATES CMAKE_MODULE_PATH) + list(REMOVE_DUPLICATES CMAKE_FIND_ROOT_PATH) + set(CMAKE_PREFIX_PATH \\\"\\\${CMAKE_PREFIX_PATH}\\\" CACHE STRING \\\"\\\" FORCE) + set(CMAKE_MODULE_PATH \\\"\\\${CMAKE_MODULE_PATH}\\\" CACHE STRING \\\"\\\" FORCE) + set(CMAKE_FIND_ROOT_PATH \\\"\\\${CMAKE_FIND_ROOT_PATH}\\\" CACHE STRING \\\"\\\" FORCE) + \") + endif() + else() + include(\"${CMAKE_CURRENT_LIST_DIR}/conan.cmake\") + conan_cmake_run( + CONANFILE \"${conanfile_txt}\" + INSTALL_FOLDER \"${CMAKE_BINARY_DIR}/conan-dependencies\" + GENERATORS cmake_paths cmake_find_package json + BUILD ${QT_CREATOR_CONAN_BUILD_POLICY} + ENV CONAN_CMAKE_TOOLCHAIN_FILE=\"${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake\" + ) + endif() + ") + + if (NOT DEFINED CMAKE_BUILD_TYPE AND NOT DEFINED CMAKE_CONFIGURATION_TYPES) + set(CMAKE_CONFIGURATION_TYPES "Debug;Release") + endif() + + execute_process(COMMAND ${CMAKE_COMMAND} + -S "${CMAKE_BINARY_DIR}/conan-dependencies/" + -B "${CMAKE_BINARY_DIR}/conan-dependencies/build" + -C "${CMAKE_BINARY_DIR}/qtcsettings.cmake" + -D "CMAKE_TOOLCHAIN_FILE=${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" + -G ${CMAKE_GENERATOR} + -D CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} + -D "CMAKE_CONFIGURATION_TYPES=${CMAKE_CONFIGURATION_TYPES}" + RESULT_VARIABLE result + ) + if (result EQUAL 0) + file(WRITE "${conanfile_timestamp_file}" "${conanfile_timestamp}") + file(WRITE "${conanfile_build_policy_file}" ${QT_CREATOR_CONAN_BUILD_POLICY}) + else() + message(WARNING "Qt Creator's conan package manager auto-setup failed. Consider setting " + "QT_CREATOR_SKIP_CONAN_SETUP to ON and reconfigure to skip this step.") + return() + endif() + endif() + + include("${CMAKE_BINARY_DIR}/conan-dependencies/conan_paths.cmake") + endif() + unset(conanfile_txt) +endmacro() +qtc_auto_setup_conan() + +# +# vcpkg +# +macro(qtc_auto_setup_vcpkg) + if (EXISTS "${CMAKE_SOURCE_DIR}/vcpkg.json" AND NOT QT_CREATOR_SKIP_VCPKG_SETUP) + option(QT_CREATOR_SKIP_VCPKG_SETUP "Skip Qt Creator's vcpkg package manager auto-setup" OFF) + + find_program(vcpkg_program vcpkg $ENV{VCPKG_ROOT} ${CMAKE_SOURCE_DIR}/vcpkg) + if (NOT vcpkg_program) + message(WARNING "Qt Creator: vcpkg executable not found. " + "Package manager auto-setup will be skipped. " + "To disable this warning set QT_CREATOR_SKIP_VCPKG_SETUP to ON.") + return() + endif() + execute_process(COMMAND ${vcpkg_program} version + RESULT_VARIABLE result_code + OUTPUT_VARIABLE vcpkg_version_output + ERROR_VARIABLE vcpkg_version_output) + if (NOT result_code EQUAL 0) + message(FATAL_ERROR "vcpkg version failed='${result_code}: ${vcpkg_version_output}") + endif() + + # Resolve any symlinks + get_filename_component(vpkg_program_real_path ${vcpkg_program} REALPATH) + get_filename_component(vpkg_root ${vpkg_program_real_path} DIRECTORY) + + if (NOT EXISTS "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") + message(STATUS "Qt Creator: vcpkg package manager auto-setup. " + "Skip this step by setting QT_CREATOR_SKIP_VCPKG_SETUP to ON.") + + file(WRITE "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" " + set(CMAKE_C_COMPILER \"${CMAKE_C_COMPILER}\") + set(CMAKE_CXX_COMPILER \"${CMAKE_CXX_COMPILER}\") + ") + qtc_auto_setup_compiler_standard("${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") + + if (CMAKE_TOOLCHAIN_FILE AND NOT + CMAKE_TOOLCHAIN_FILE STREQUAL "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") + file(APPEND "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" + "include(\"${CMAKE_TOOLCHAIN_FILE}\")\n") + endif() + + if (VCPKG_TARGET_TRIPLET) + set(vcpkg_triplet ${VCPKG_TARGET_TRIPLET}) + else() + if (WIN32) + set(vcpkg_triplet x64-mingw-static) + if (CMAKE_CXX_COMPILER MATCHES ".*/(.*)/cl.exe") + set(vcpkg_triplet ${CMAKE_MATCH_1}-windows) + endif() + elseif(APPLE) + set(vcpkg_triplet x64-osx) + else() + set(vcpkg_triplet x64-linux) + endif() + endif() + + file(APPEND "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" " + set(VCPKG_TARGET_TRIPLET ${vcpkg_triplet}) + include(\"${vpkg_root}/scripts/buildsystems/vcpkg.cmake\") + ") + endif() + + set(CMAKE_TOOLCHAIN_FILE "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" CACHE PATH "" FORCE) + + # Save CMAKE_PREFIX_PATH and CMAKE_MODULE_PATH as cache variables + if (CMAKE_VERSION GREATER_EQUAL "3.19") + cmake_language(DEFER CALL list REMOVE_DUPLICATES CMAKE_PREFIX_PATH) + cmake_language(DEFER CALL list REMOVE_DUPLICATES CMAKE_MODULE_PATH) + cmake_language(DEFER CALL set CMAKE_PREFIX_PATH "${CMAKE_PREFIX_PATH}" CACHE STRING "" FORCE) + cmake_language(DEFER CALL set CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" CACHE STRING "" FORCE) + endif() + endif() +endmacro() +qtc_auto_setup_vcpkg() diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/conan.cmake b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/conan.cmake new file mode 100644 index 0000000..4f5f67e --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/conan.cmake @@ -0,0 +1,1026 @@ +# The MIT License (MIT) + +# Copyright (c) 2018 JFrog + +# 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. + + + +# This file comes from: https://github.com/conan-io/cmake-conan. Please refer +# to this repository for issues and documentation. + +# Its purpose is to wrap and launch Conan C/C++ Package Manager when cmake is called. +# It will take CMake current settings (os, compiler, compiler version, architecture) +# and translate them to conan settings for installing and retrieving dependencies. + +# It is intended to facilitate developers building projects that have conan dependencies, +# but it is only necessary on the end-user side. It is not necessary to create conan +# packages, in fact it shouldn't be use for that. Check the project documentation. + +# version: 0.18.1 + +include(CMakeParseArguments) + +function(_get_msvc_ide_version result) + set(${result} "" PARENT_SCOPE) + if(NOT MSVC_VERSION VERSION_LESS 1400 AND MSVC_VERSION VERSION_LESS 1500) + set(${result} 8 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1500 AND MSVC_VERSION VERSION_LESS 1600) + set(${result} 9 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1600 AND MSVC_VERSION VERSION_LESS 1700) + set(${result} 10 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1700 AND MSVC_VERSION VERSION_LESS 1800) + set(${result} 11 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1800 AND MSVC_VERSION VERSION_LESS 1900) + set(${result} 12 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1900 AND MSVC_VERSION VERSION_LESS 1910) + set(${result} 14 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1910 AND MSVC_VERSION VERSION_LESS 1920) + set(${result} 15 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1920 AND MSVC_VERSION VERSION_LESS 1930) + set(${result} 16 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1930 AND MSVC_VERSION VERSION_LESS 1940) + set(${result} 17 PARENT_SCOPE) + else() + message(FATAL_ERROR "Conan: Unknown MSVC compiler version [${MSVC_VERSION}]") + endif() +endfunction() + +macro(_conan_detect_build_type) + conan_parse_arguments(${ARGV}) + + if(ARGUMENTS_BUILD_TYPE) + set(_CONAN_SETTING_BUILD_TYPE ${ARGUMENTS_BUILD_TYPE}) + elseif(CMAKE_BUILD_TYPE) + set(_CONAN_SETTING_BUILD_TYPE ${CMAKE_BUILD_TYPE}) + else() + message(FATAL_ERROR "Please specify in command line CMAKE_BUILD_TYPE (-DCMAKE_BUILD_TYPE=Release)") + endif() + + string(TOUPPER ${_CONAN_SETTING_BUILD_TYPE} _CONAN_SETTING_BUILD_TYPE_UPPER) + if (_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "DEBUG") + set(_CONAN_SETTING_BUILD_TYPE "Debug") + elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "RELEASE") + set(_CONAN_SETTING_BUILD_TYPE "Release") + elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "RELWITHDEBINFO") + set(_CONAN_SETTING_BUILD_TYPE "RelWithDebInfo") + elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "MINSIZEREL") + set(_CONAN_SETTING_BUILD_TYPE "MinSizeRel") + endif() +endmacro() + +macro(_conan_check_system_name) + #handle -s os setting + if(CMAKE_SYSTEM_NAME AND NOT CMAKE_SYSTEM_NAME STREQUAL "Generic") + #use default conan os setting if CMAKE_SYSTEM_NAME is not defined + set(CONAN_SYSTEM_NAME ${CMAKE_SYSTEM_NAME}) + if(${CMAKE_SYSTEM_NAME} STREQUAL "Darwin") + set(CONAN_SYSTEM_NAME Macos) + endif() + if(${CMAKE_SYSTEM_NAME} STREQUAL "QNX") + set(CONAN_SYSTEM_NAME Neutrino) + endif() + set(CONAN_SUPPORTED_PLATFORMS Windows Linux Macos Android iOS FreeBSD WindowsStore WindowsCE watchOS tvOS FreeBSD SunOS AIX Arduino Emscripten Neutrino) + list (FIND CONAN_SUPPORTED_PLATFORMS "${CONAN_SYSTEM_NAME}" _index) + if (${_index} GREATER -1) + #check if the cmake system is a conan supported one + set(_CONAN_SETTING_OS ${CONAN_SYSTEM_NAME}) + else() + message(FATAL_ERROR "cmake system ${CONAN_SYSTEM_NAME} is not supported by conan. Use one of ${CONAN_SUPPORTED_PLATFORMS}") + endif() + endif() +endmacro() + +macro(_conan_check_language) + get_property(_languages GLOBAL PROPERTY ENABLED_LANGUAGES) + if (";${_languages};" MATCHES ";CXX;") + set(LANGUAGE CXX) + set(USING_CXX 1) + elseif (";${_languages};" MATCHES ";C;") + set(LANGUAGE C) + set(USING_CXX 0) + else () + message(FATAL_ERROR "Conan: Neither C or C++ was detected as a language for the project. Unabled to detect compiler version.") + endif() +endmacro() + +macro(_conan_detect_compiler) + + conan_parse_arguments(${ARGV}) + + if(ARGUMENTS_ARCH) + set(_CONAN_SETTING_ARCH ${ARGUMENTS_ARCH}) + endif() + + if(USING_CXX) + set(_CONAN_SETTING_COMPILER_CPPSTD ${CMAKE_CXX_STANDARD}) + endif() + + if (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL GNU) + # using GCC + # TODO: Handle other params + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(COMPILER_VERSION ${MAJOR}.${MINOR}) + if(${MAJOR} GREATER 4) + set(COMPILER_VERSION ${MAJOR}) + endif() + set(_CONAN_SETTING_COMPILER gcc) + set(_CONAN_SETTING_COMPILER_VERSION ${COMPILER_VERSION}) + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Intel) + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(COMPILER_VERSION ${MAJOR}.${MINOR}) + set(_CONAN_SETTING_COMPILER intel) + set(_CONAN_SETTING_COMPILER_VERSION ${COMPILER_VERSION}) + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL AppleClang) + # using AppleClang + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(_CONAN_SETTING_COMPILER apple-clang) + set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}.${MINOR}) + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Clang + AND NOT "${CMAKE_${LANGUAGE}_COMPILER_FRONTEND_VARIANT}" STREQUAL "MSVC" + AND NOT "${CMAKE_${LANGUAGE}_SIMULATE_ID}" STREQUAL "MSVC") + + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(_CONAN_SETTING_COMPILER clang) + set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}.${MINOR}) + if(APPLE) + cmake_policy(GET CMP0025 APPLE_CLANG_POLICY) + if(NOT APPLE_CLANG_POLICY STREQUAL NEW) + message(STATUS "Conan: APPLE and Clang detected. Assuming apple-clang compiler. Set CMP0025 to avoid it") + set(_CONAN_SETTING_COMPILER apple-clang) + endif() + endif() + if(${_CONAN_SETTING_COMPILER} STREQUAL clang AND ${MAJOR} GREATER 7) + set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}) + endif() + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif(${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL MSVC + OR (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Clang + AND "${CMAKE_${LANGUAGE}_COMPILER_FRONTEND_VARIANT}" STREQUAL "MSVC" + AND "${CMAKE_${LANGUAGE}_SIMULATE_ID}" STREQUAL "MSVC")) + + set(_VISUAL "Visual Studio") + _get_msvc_ide_version(_VISUAL_VERSION) + if("${_VISUAL_VERSION}" STREQUAL "") + message(FATAL_ERROR "Conan: Visual Studio not recognized") + else() + set(_CONAN_SETTING_COMPILER ${_VISUAL}) + set(_CONAN_SETTING_COMPILER_VERSION ${_VISUAL_VERSION}) + endif() + + if(NOT _CONAN_SETTING_ARCH) + if (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "64") + set(_CONAN_SETTING_ARCH x86_64) + elseif (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "^ARM") + message(STATUS "Conan: Using default ARM architecture from MSVC") + set(_CONAN_SETTING_ARCH armv6) + elseif (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "86") + set(_CONAN_SETTING_ARCH x86) + else () + message(FATAL_ERROR "Conan: Unknown MSVC architecture [${MSVC_${LANGUAGE}_ARCHITECTURE_ID}]") + endif() + endif() + + conan_cmake_detect_vs_runtime(_vs_runtime ${ARGV}) + message(STATUS "Conan: Detected VS runtime: ${_vs_runtime}") + set(_CONAN_SETTING_COMPILER_RUNTIME ${_vs_runtime}) + + if (CMAKE_GENERATOR_TOOLSET) + set(_CONAN_SETTING_COMPILER_TOOLSET ${CMAKE_VS_PLATFORM_TOOLSET}) + elseif(CMAKE_VS_PLATFORM_TOOLSET AND (CMAKE_GENERATOR STREQUAL "Ninja")) + set(_CONAN_SETTING_COMPILER_TOOLSET ${CMAKE_VS_PLATFORM_TOOLSET}) + endif() + else() + message(FATAL_ERROR "Conan: compiler setup not recognized") + endif() + +endmacro() + +function(conan_cmake_settings result) + #message(STATUS "COMPILER " ${CMAKE_CXX_COMPILER}) + #message(STATUS "COMPILER " ${CMAKE_CXX_COMPILER_ID}) + #message(STATUS "VERSION " ${CMAKE_CXX_COMPILER_VERSION}) + #message(STATUS "FLAGS " ${CMAKE_LANG_FLAGS}) + #message(STATUS "LIB ARCH " ${CMAKE_CXX_LIBRARY_ARCHITECTURE}) + #message(STATUS "BUILD TYPE " ${CMAKE_BUILD_TYPE}) + #message(STATUS "GENERATOR " ${CMAKE_GENERATOR}) + #message(STATUS "GENERATOR WIN64 " ${CMAKE_CL_64}) + + message(STATUS "Conan: Automatic detection of conan settings from cmake") + + conan_parse_arguments(${ARGV}) + + _conan_detect_build_type(${ARGV}) + + _conan_check_system_name() + + _conan_check_language() + + _conan_detect_compiler(${ARGV}) + + # If profile is defined it is used + if(CMAKE_BUILD_TYPE STREQUAL "Debug" AND ARGUMENTS_DEBUG_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_DEBUG_PROFILE}) + elseif(CMAKE_BUILD_TYPE STREQUAL "Release" AND ARGUMENTS_RELEASE_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_RELEASE_PROFILE}) + elseif(CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo" AND ARGUMENTS_RELWITHDEBINFO_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_RELWITHDEBINFO_PROFILE}) + elseif(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel" AND ARGUMENTS_MINSIZEREL_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_MINSIZEREL_PROFILE}) + elseif(ARGUMENTS_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_PROFILE}) + endif() + + foreach(ARG ${_APPLIED_PROFILES}) + set(_SETTINGS ${_SETTINGS} -pr=${ARG}) + endforeach() + foreach(ARG ${ARGUMENTS_PROFILE_BUILD}) + conan_check(VERSION 1.24.0 REQUIRED DETECT_QUIET) + set(_SETTINGS ${_SETTINGS} -pr:b=${ARG}) + endforeach() + + if(NOT _SETTINGS OR ARGUMENTS_PROFILE_AUTO STREQUAL "ALL") + set(ARGUMENTS_PROFILE_AUTO arch build_type compiler compiler.version + compiler.runtime compiler.libcxx compiler.toolset) + endif() + + # remove any manually specified settings from the autodetected settings + foreach(ARG ${ARGUMENTS_SETTINGS}) + string(REGEX MATCH "[^=]*" MANUAL_SETTING "${ARG}") + message(STATUS "Conan: ${MANUAL_SETTING} was added as an argument. Not using the autodetected one.") + list(REMOVE_ITEM ARGUMENTS_PROFILE_AUTO "${MANUAL_SETTING}") + endforeach() + + # Automatic from CMake + foreach(ARG ${ARGUMENTS_PROFILE_AUTO}) + string(TOUPPER ${ARG} _arg_name) + string(REPLACE "." "_" _arg_name ${_arg_name}) + if(_CONAN_SETTING_${_arg_name}) + set(_SETTINGS ${_SETTINGS} -s ${ARG}=${_CONAN_SETTING_${_arg_name}}) + endif() + endforeach() + + foreach(ARG ${ARGUMENTS_SETTINGS}) + set(_SETTINGS ${_SETTINGS} -s ${ARG}) + endforeach() + + message(STATUS "Conan: Settings= ${_SETTINGS}") + + set(${result} ${_SETTINGS} PARENT_SCOPE) +endfunction() + + +function(conan_cmake_detect_unix_libcxx result) + # Take into account any -stdlib in compile options + get_directory_property(compile_options DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMPILE_OPTIONS) + string(GENEX_STRIP "${compile_options}" compile_options) + + # Take into account any _GLIBCXX_USE_CXX11_ABI in compile definitions + get_directory_property(defines DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMPILE_DEFINITIONS) + string(GENEX_STRIP "${defines}" defines) + + foreach(define ${defines}) + if(define MATCHES "_GLIBCXX_USE_CXX11_ABI") + if(define MATCHES "^-D") + set(compile_options ${compile_options} "${define}") + else() + set(compile_options ${compile_options} "-D${define}") + endif() + endif() + endforeach() + + # add additional compiler options ala cmRulePlaceholderExpander::ExpandRuleVariable + set(EXPAND_CXX_COMPILER ${CMAKE_CXX_COMPILER}) + if(CMAKE_CXX_COMPILER_ARG1) + # CMake splits CXX="foo bar baz" into CMAKE_CXX_COMPILER="foo", CMAKE_CXX_COMPILER_ARG1="bar baz" + # without this, ccache, winegcc, or other wrappers might lose all their arguments + separate_arguments(SPLIT_CXX_COMPILER_ARG1 NATIVE_COMMAND ${CMAKE_CXX_COMPILER_ARG1}) + list(APPEND EXPAND_CXX_COMPILER ${SPLIT_CXX_COMPILER_ARG1}) + endif() + + if(CMAKE_CXX_COMPILE_OPTIONS_TARGET AND CMAKE_CXX_COMPILER_TARGET) + # without --target= we may be calling the wrong underlying GCC + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_TARGET}${CMAKE_CXX_COMPILER_TARGET}") + endif() + + if(CMAKE_CXX_COMPILE_OPTIONS_EXTERNAL_TOOLCHAIN AND CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN) + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_EXTERNAL_TOOLCHAIN}${CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN}") + endif() + + if(CMAKE_CXX_COMPILE_OPTIONS_SYSROOT) + # without --sysroot= we may find the wrong #include + if(CMAKE_SYSROOT_COMPILE) + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_SYSROOT}${CMAKE_SYSROOT_COMPILE}") + elseif(CMAKE_SYSROOT) + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_SYSROOT}${CMAKE_SYSROOT}") + endif() + endif() + + separate_arguments(SPLIT_CXX_FLAGS NATIVE_COMMAND ${CMAKE_CXX_FLAGS}) + + if(CMAKE_OSX_SYSROOT) + set(xcode_sysroot_option "--sysroot=${CMAKE_OSX_SYSROOT}") + endif() + + execute_process( + COMMAND ${CMAKE_COMMAND} -E echo "#include " + COMMAND ${EXPAND_CXX_COMPILER} ${SPLIT_CXX_FLAGS} -x c++ ${xcode_sysroot_option} ${compile_options} -E -dM - + OUTPUT_VARIABLE string_defines + ) + + if(string_defines MATCHES "#define __GLIBCXX__") + # Allow -D_GLIBCXX_USE_CXX11_ABI=ON/OFF as argument to cmake + if(DEFINED _GLIBCXX_USE_CXX11_ABI) + if(_GLIBCXX_USE_CXX11_ABI) + set(${result} libstdc++11 PARENT_SCOPE) + return() + else() + set(${result} libstdc++ PARENT_SCOPE) + return() + endif() + endif() + + if(string_defines MATCHES "#define _GLIBCXX_USE_CXX11_ABI 1\n") + set(${result} libstdc++11 PARENT_SCOPE) + else() + # Either the compiler is missing the define because it is old, and so + # it can't use the new abi, or the compiler was configured to use the + # old abi by the user or distro (e.g. devtoolset on RHEL/CentOS) + set(${result} libstdc++ PARENT_SCOPE) + endif() + else() + set(${result} libc++ PARENT_SCOPE) + endif() +endfunction() + +function(conan_cmake_detect_vs_runtime result) + + conan_parse_arguments(${ARGV}) + if(ARGUMENTS_BUILD_TYPE) + set(build_type "${ARGUMENTS_BUILD_TYPE}") + elseif(CMAKE_BUILD_TYPE) + set(build_type "${CMAKE_BUILD_TYPE}") + else() + message(FATAL_ERROR "Please specify in command line CMAKE_BUILD_TYPE (-DCMAKE_BUILD_TYPE=Release)") + endif() + + if(build_type) + string(TOUPPER "${build_type}" build_type) + endif() + set(variables CMAKE_CXX_FLAGS_${build_type} CMAKE_C_FLAGS_${build_type} CMAKE_CXX_FLAGS CMAKE_C_FLAGS) + foreach(variable ${variables}) + if(NOT "${${variable}}" STREQUAL "") + string(REPLACE " " ";" flags "${${variable}}") + foreach (flag ${flags}) + if("${flag}" STREQUAL "/MD" OR "${flag}" STREQUAL "/MDd" OR "${flag}" STREQUAL "/MT" OR "${flag}" STREQUAL "/MTd") + string(SUBSTRING "${flag}" 1 -1 runtime) + set(${result} "${runtime}" PARENT_SCOPE) + return() + endif() + endforeach() + endif() + endforeach() + if("${build_type}" STREQUAL "DEBUG") + set(${result} "MDd" PARENT_SCOPE) + else() + set(${result} "MD" PARENT_SCOPE) + endif() +endfunction() + +function(_collect_settings result) + set(ARGUMENTS_PROFILE_AUTO arch build_type compiler compiler.version + compiler.runtime compiler.libcxx compiler.toolset + compiler.cppstd) + foreach(ARG ${ARGUMENTS_PROFILE_AUTO}) + string(TOUPPER ${ARG} _arg_name) + string(REPLACE "." "_" _arg_name ${_arg_name}) + if(_CONAN_SETTING_${_arg_name}) + set(detected_setings ${detected_setings} ${ARG}=${_CONAN_SETTING_${_arg_name}}) + endif() + endforeach() + set(${result} ${detected_setings} PARENT_SCOPE) +endfunction() + +function(conan_cmake_autodetect detected_settings) + _conan_detect_build_type(${ARGV}) + _conan_check_system_name() + _conan_check_language() + _conan_detect_compiler(${ARGV}) + _collect_settings(collected_settings) + set(${detected_settings} ${collected_settings} PARENT_SCOPE) +endfunction() + +macro(conan_parse_arguments) + set(options BASIC_SETUP CMAKE_TARGETS UPDATE KEEP_RPATHS NO_LOAD NO_OUTPUT_DIRS OUTPUT_QUIET NO_IMPORTS SKIP_STD) + set(oneValueArgs CONANFILE ARCH BUILD_TYPE INSTALL_FOLDER OUTPUT_FOLDER CONAN_COMMAND) + set(multiValueArgs DEBUG_PROFILE RELEASE_PROFILE RELWITHDEBINFO_PROFILE MINSIZEREL_PROFILE + PROFILE REQUIRES OPTIONS IMPORTS SETTINGS BUILD ENV GENERATORS PROFILE_AUTO + INSTALL_ARGS CONFIGURATION_TYPES PROFILE_BUILD BUILD_REQUIRES) + cmake_parse_arguments(ARGUMENTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) +endmacro() + +function(old_conan_cmake_install) + # Calls "conan install" + # Argument BUILD is equivalant to --build={missing, PkgName,...} or + # --build when argument is 'BUILD all' (which builds all packages from source) + # Argument CONAN_COMMAND, to specify the conan path, e.g. in case of running from source + # cmake does not identify conan as command, even if it is +x and it is in the path + conan_parse_arguments(${ARGV}) + + if(CONAN_CMAKE_MULTI) + set(ARGUMENTS_GENERATORS ${ARGUMENTS_GENERATORS} cmake_multi) + else() + set(ARGUMENTS_GENERATORS ${ARGUMENTS_GENERATORS} cmake) + endif() + + set(CONAN_BUILD_POLICY "") + foreach(ARG ${ARGUMENTS_BUILD}) + if(${ARG} STREQUAL "all") + set(CONAN_BUILD_POLICY ${CONAN_BUILD_POLICY} --build) + break() + else() + set(CONAN_BUILD_POLICY ${CONAN_BUILD_POLICY} --build=${ARG}) + endif() + endforeach() + if(ARGUMENTS_CONAN_COMMAND) + set(CONAN_CMD ${ARGUMENTS_CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + set(CONAN_OPTIONS "") + if(ARGUMENTS_CONANFILE) + if(IS_ABSOLUTE ${ARGUMENTS_CONANFILE}) + set(CONANFILE ${ARGUMENTS_CONANFILE}) + else() + set(CONANFILE ${CMAKE_CURRENT_SOURCE_DIR}/${ARGUMENTS_CONANFILE}) + endif() + else() + set(CONANFILE ".") + endif() + foreach(ARG ${ARGUMENTS_OPTIONS}) + set(CONAN_OPTIONS ${CONAN_OPTIONS} -o=${ARG}) + endforeach() + if(ARGUMENTS_UPDATE) + set(CONAN_INSTALL_UPDATE --update) + endif() + if(ARGUMENTS_NO_IMPORTS) + set(CONAN_INSTALL_NO_IMPORTS --no-imports) + endif() + set(CONAN_INSTALL_FOLDER "") + if(ARGUMENTS_INSTALL_FOLDER) + set(CONAN_INSTALL_FOLDER -if=${ARGUMENTS_INSTALL_FOLDER}) + endif() + set(CONAN_OUTPUT_FOLDER "") + if(ARGUMENTS_OUTPUT_FOLDER) + set(CONAN_OUTPUT_FOLDER -of=${ARGUMENTS_OUTPUT_FOLDER}) + endif() + foreach(ARG ${ARGUMENTS_GENERATORS}) + set(CONAN_GENERATORS ${CONAN_GENERATORS} -g=${ARG}) + endforeach() + foreach(ARG ${ARGUMENTS_ENV}) + set(CONAN_ENV_VARS ${CONAN_ENV_VARS} -e=${ARG}) + endforeach() + set(conan_args install ${CONANFILE} ${settings} ${CONAN_ENV_VARS} ${CONAN_GENERATORS} ${CONAN_BUILD_POLICY} ${CONAN_INSTALL_UPDATE} ${CONAN_INSTALL_NO_IMPORTS} ${CONAN_OPTIONS} ${CONAN_INSTALL_FOLDER} ${ARGUMENTS_INSTALL_ARGS}) + + string (REPLACE ";" " " _conan_args "${conan_args}") + message(STATUS "Conan executing: ${CONAN_CMD} ${_conan_args}") + + if(ARGUMENTS_OUTPUT_QUIET) + execute_process(COMMAND ${CONAN_CMD} ${conan_args} + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_output + ERROR_VARIABLE conan_output + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + else() + execute_process(COMMAND ${CONAN_CMD} ${conan_args} + RESULT_VARIABLE return_code + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + endif() + + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan install failed='${return_code}'") + endif() + +endfunction() + +function(conan_cmake_install) + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + + set(installOptions UPDATE NO_IMPORTS OUTPUT_QUIET ERROR_QUIET) + set(installOneValueArgs PATH_OR_REFERENCE REFERENCE REMOTE LOCKFILE LOCKFILE_OUT LOCKFILE_NODE_ID INSTALL_FOLDER OUTPUT_FOLDER) + set(installMultiValueArgs GENERATOR BUILD ENV ENV_HOST ENV_BUILD OPTIONS_HOST OPTIONS OPTIONS_BUILD PROFILE + PROFILE_HOST PROFILE_BUILD SETTINGS SETTINGS_HOST SETTINGS_BUILD) + cmake_parse_arguments(ARGS "${installOptions}" "${installOneValueArgs}" "${installMultiValueArgs}" ${ARGN}) + foreach(arg ${installOptions}) + if(ARGS_${arg}) + set(${arg} ${${arg}} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${installOneValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "REMOTE") + set(flag "--remote") + elseif("${arg}" STREQUAL "LOCKFILE") + set(flag "--lockfile") + elseif("${arg}" STREQUAL "LOCKFILE_OUT") + set(flag "--lockfile-out") + elseif("${arg}" STREQUAL "LOCKFILE_NODE_ID") + set(flag "--lockfile-node-id") + elseif("${arg}" STREQUAL "INSTALL_FOLDER") + set(flag "--install-folder") + elseif("${arg}" STREQUAL "OUTPUT_FOLDER") + set(flag "--output-folder") + endif() + set(${arg} ${${arg}} ${flag} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${installMultiValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "GENERATOR") + set(flag "--generator") + elseif("${arg}" STREQUAL "BUILD") + set(flag "--build") + elseif("${arg}" STREQUAL "ENV") + set(flag "--env") + elseif("${arg}" STREQUAL "ENV_HOST") + set(flag "--env:host") + elseif("${arg}" STREQUAL "ENV_BUILD") + set(flag "--env:build") + elseif("${arg}" STREQUAL "OPTIONS") + set(flag "--options") + elseif("${arg}" STREQUAL "OPTIONS_HOST") + set(flag "--options:host") + elseif("${arg}" STREQUAL "OPTIONS_BUILD") + set(flag "--options:build") + elseif("${arg}" STREQUAL "PROFILE") + set(flag "--profile") + elseif("${arg}" STREQUAL "PROFILE_HOST") + set(flag "--profile:host") + elseif("${arg}" STREQUAL "PROFILE_BUILD") + set(flag "--profile:build") + elseif("${arg}" STREQUAL "SETTINGS") + set(flag "--settings") + elseif("${arg}" STREQUAL "SETTINGS_HOST") + set(flag "--settings:host") + elseif("${arg}" STREQUAL "SETTINGS_BUILD") + set(flag "--settings:build") + endif() + list(LENGTH ARGS_${arg} numargs) + foreach(item ${ARGS_${arg}}) + if(${item} STREQUAL "all" AND ${arg} STREQUAL "BUILD") + set(${arg} "--build") + break() + endif() + set(${arg} ${${arg}} ${flag} ${item}) + endforeach() + endif() + endforeach() + if(DEFINED UPDATE) + set(UPDATE --update) + endif() + if(DEFINED NO_IMPORTS) + set(NO_IMPORTS --no-imports) + endif() + set(install_args install ${PATH_OR_REFERENCE} ${REFERENCE} ${UPDATE} ${NO_IMPORTS} ${REMOTE} ${LOCKFILE} ${LOCKFILE_OUT} ${LOCKFILE_NODE_ID} ${INSTALL_FOLDER} ${OUTPUT_FOLDER} + ${GENERATOR} ${BUILD} ${ENV} ${ENV_HOST} ${ENV_BUILD} ${OPTIONS} ${OPTIONS_HOST} ${OPTIONS_BUILD} + ${PROFILE} ${PROFILE_HOST} ${PROFILE_BUILD} ${SETTINGS} ${SETTINGS_HOST} ${SETTINGS_BUILD}) + + string(REPLACE ";" " " _install_args "${install_args}") + message(STATUS "Conan executing: ${CONAN_CMD} ${_install_args}") + + if(ARGS_OUTPUT_QUIET) + set(OUTPUT_OPT OUTPUT_QUIET) + endif() + if(ARGS_ERROR_QUIET) + set(ERROR_OPT ERROR_QUIET) + endif() + + execute_process(COMMAND ${CONAN_CMD} ${install_args} + RESULT_VARIABLE return_code + ${OUTPUT_OPT} + ${ERROR_OPT} + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + if(NOT "${return_code}" STREQUAL "0") + if (ARGS_ERROR_QUIET) + message(WARNING "Conan install failed='${return_code}'") + else() + message(FATAL_ERROR "Conan install failed='${return_code}'") + endif() + endif() + +endfunction() + +function(conan_cmake_lock_create) + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + + set(lockCreateOptions UPDATE BASE OUTPUT_QUIET ERROR_QUIET) + set(lockCreateOneValueArgs PATH REFERENCE REMOTE LOCKFILE LOCKFILE_OUT) + set(lockCreateMultiValueArgs BUILD ENV ENV_HOST ENV_BUILD OPTIONS_HOST OPTIONS OPTIONS_BUILD PROFILE + PROFILE_HOST PROFILE_BUILD SETTINGS SETTINGS_HOST SETTINGS_BUILD) + cmake_parse_arguments(ARGS "${lockCreateOptions}" "${lockCreateOneValueArgs}" "${lockCreateMultiValueArgs}" ${ARGN}) + foreach(arg ${lockCreateOptions}) + if(ARGS_${arg}) + set(${arg} ${${arg}} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${lockCreateOneValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "REMOTE") + set(flag "--remote") + elseif("${arg}" STREQUAL "LOCKFILE") + set(flag "--lockfile") + elseif("${arg}" STREQUAL "LOCKFILE_OUT") + set(flag "--lockfile-out") + endif() + set(${arg} ${${arg}} ${flag} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${lockCreateMultiValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "BUILD") + set(flag "--build") + elseif("${arg}" STREQUAL "ENV") + set(flag "--env") + elseif("${arg}" STREQUAL "ENV_HOST") + set(flag "--env:host") + elseif("${arg}" STREQUAL "ENV_BUILD") + set(flag "--env:build") + elseif("${arg}" STREQUAL "OPTIONS") + set(flag "--options") + elseif("${arg}" STREQUAL "OPTIONS_HOST") + set(flag "--options:host") + elseif("${arg}" STREQUAL "OPTIONS_BUILD") + set(flag "--options:build") + elseif("${arg}" STREQUAL "PROFILE") + set(flag "--profile") + elseif("${arg}" STREQUAL "PROFILE_HOST") + set(flag "--profile:host") + elseif("${arg}" STREQUAL "PROFILE_BUILD") + set(flag "--profile:build") + elseif("${arg}" STREQUAL "SETTINGS") + set(flag "--settings") + elseif("${arg}" STREQUAL "SETTINGS_HOST") + set(flag "--settings:host") + elseif("${arg}" STREQUAL "SETTINGS_BUILD") + set(flag "--settings:build") + endif() + list(LENGTH ARGS_${arg} numargs) + foreach(item ${ARGS_${arg}}) + if(${item} STREQUAL "all" AND ${arg} STREQUAL "BUILD") + set(${arg} "--build") + break() + endif() + set(${arg} ${${arg}} ${flag} ${item}) + endforeach() + endif() + endforeach() + if(DEFINED UPDATE) + set(UPDATE --update) + endif() + if(DEFINED BASE) + set(BASE --base) + endif() + set(lock_create_Args lock create ${PATH} ${REFERENCE} ${UPDATE} ${BASE} ${REMOTE} ${LOCKFILE} ${LOCKFILE_OUT} ${LOCKFILE_NODE_ID} ${INSTALL_FOLDER} + ${GENERATOR} ${BUILD} ${ENV} ${ENV_HOST} ${ENV_BUILD} ${OPTIONS} ${OPTIONS_HOST} ${OPTIONS_BUILD} + ${PROFILE} ${PROFILE_HOST} ${PROFILE_BUILD} ${SETTINGS} ${SETTINGS_HOST} ${SETTINGS_BUILD}) + + string(REPLACE ";" " " _lock_create_Args "${lock_create_Args}") + message(STATUS "Conan executing: ${CONAN_CMD} ${_lock_create_Args}") + + if(ARGS_OUTPUT_QUIET) + set(OUTPUT_OPT OUTPUT_QUIET) + endif() + if(ARGS_ERROR_QUIET) + set(ERROR_OPT ERROR_QUIET) + endif() + + execute_process(COMMAND ${CONAN_CMD} ${lock_create_Args} + RESULT_VARIABLE return_code + ${OUTPUT_OPT} + ${ERROR_OPT} + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + if(NOT "${return_code}" STREQUAL "0") + if (ARGS_ERROR_QUIET) + message(WARNING "Conan lock create failed='${return_code}'") + else() + message(FATAL_ERROR "Conan lock create failed='${return_code}'") + endif() + endif() +endfunction() + +function(conan_cmake_setup_conanfile) + conan_parse_arguments(${ARGV}) + if(ARGUMENTS_CONANFILE) + get_filename_component(_CONANFILE_NAME ${ARGUMENTS_CONANFILE} NAME) + # configure_file will make sure cmake re-runs when conanfile is updated + configure_file(${ARGUMENTS_CONANFILE} ${CMAKE_CURRENT_BINARY_DIR}/${_CONANFILE_NAME}.junk COPYONLY) + file(REMOVE ${CMAKE_CURRENT_BINARY_DIR}/${_CONANFILE_NAME}.junk) + else() + conan_cmake_generate_conanfile(ON ${ARGV}) + endif() +endfunction() + +function(conan_cmake_configure) + conan_cmake_generate_conanfile(OFF ${ARGV}) +endfunction() + +# Generate, writing in disk a conanfile.txt with the requires, options, and imports +# specified as arguments +# This will be considered as temporary file, generated in CMAKE_CURRENT_BINARY_DIR) +function(conan_cmake_generate_conanfile DEFAULT_GENERATOR) + + conan_parse_arguments(${ARGV}) + + set(_FN "${CMAKE_CURRENT_BINARY_DIR}/conanfile.txt") + file(WRITE ${_FN} "") + + if(DEFINED ARGUMENTS_REQUIRES) + file(APPEND ${_FN} "[requires]\n") + foreach(REQUIRE ${ARGUMENTS_REQUIRES}) + file(APPEND ${_FN} ${REQUIRE} "\n") + endforeach() + endif() + + if (DEFAULT_GENERATOR OR DEFINED ARGUMENTS_GENERATORS) + file(APPEND ${_FN} "[generators]\n") + if (DEFAULT_GENERATOR) + file(APPEND ${_FN} "cmake\n") + endif() + if (DEFINED ARGUMENTS_GENERATORS) + foreach(GENERATOR ${ARGUMENTS_GENERATORS}) + file(APPEND ${_FN} ${GENERATOR} "\n") + endforeach() + endif() + endif() + + if(DEFINED ARGUMENTS_BUILD_REQUIRES) + file(APPEND ${_FN} "[build_requires]\n") + foreach(BUILD_REQUIRE ${ARGUMENTS_BUILD_REQUIRES}) + file(APPEND ${_FN} ${BUILD_REQUIRE} "\n") + endforeach() + endif() + + if(DEFINED ARGUMENTS_IMPORTS) + file(APPEND ${_FN} "[imports]\n") + foreach(IMPORTS ${ARGUMENTS_IMPORTS}) + file(APPEND ${_FN} ${IMPORTS} "\n") + endforeach() + endif() + + if(DEFINED ARGUMENTS_OPTIONS) + file(APPEND ${_FN} "[options]\n") + foreach(OPTION ${ARGUMENTS_OPTIONS}) + file(APPEND ${_FN} ${OPTION} "\n") + endforeach() + endif() + +endfunction() + + +macro(conan_load_buildinfo) + if(CONAN_CMAKE_MULTI) + set(_CONANBUILDINFO conanbuildinfo_multi.cmake) + else() + set(_CONANBUILDINFO conanbuildinfo.cmake) + endif() + if(ARGUMENTS_INSTALL_FOLDER) + set(_CONANBUILDINFOFOLDER ${ARGUMENTS_INSTALL_FOLDER}) + else() + set(_CONANBUILDINFOFOLDER ${CMAKE_CURRENT_BINARY_DIR}) + endif() + # Checks for the existence of conanbuildinfo.cmake, and loads it + # important that it is macro, so variables defined at parent scope + if(EXISTS "${_CONANBUILDINFOFOLDER}/${_CONANBUILDINFO}") + message(STATUS "Conan: Loading ${_CONANBUILDINFO}") + include(${_CONANBUILDINFOFOLDER}/${_CONANBUILDINFO}) + else() + message(FATAL_ERROR "${_CONANBUILDINFO} doesn't exist in ${CMAKE_CURRENT_BINARY_DIR}") + endif() +endmacro() + + +macro(conan_cmake_run) + conan_parse_arguments(${ARGV}) + + if(ARGUMENTS_CONFIGURATION_TYPES AND NOT CMAKE_CONFIGURATION_TYPES) + message(WARNING "CONFIGURATION_TYPES should only be specified for multi-configuration generators") + elseif(ARGUMENTS_CONFIGURATION_TYPES AND ARGUMENTS_BUILD_TYPE) + message(WARNING "CONFIGURATION_TYPES and BUILD_TYPE arguments should not be defined at the same time.") + endif() + + if(CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE AND NOT CONAN_EXPORTED + AND NOT ARGUMENTS_BUILD_TYPE) + set(CONAN_CMAKE_MULTI ON) + if (NOT ARGUMENTS_CONFIGURATION_TYPES) + set(ARGUMENTS_CONFIGURATION_TYPES "Release;Debug") + endif() + message(STATUS "Conan: Using cmake-multi generator") + else() + set(CONAN_CMAKE_MULTI OFF) + endif() + + if(NOT CONAN_EXPORTED) + conan_cmake_setup_conanfile(${ARGV}) + if(CONAN_CMAKE_MULTI) + foreach(CMAKE_BUILD_TYPE ${ARGUMENTS_CONFIGURATION_TYPES}) + set(ENV{CONAN_IMPORT_PATH} ${CMAKE_BUILD_TYPE}) + conan_cmake_settings(settings ${ARGV}) + old_conan_cmake_install(SETTINGS ${settings} ${ARGV}) + endforeach() + set(CMAKE_BUILD_TYPE) + else() + conan_cmake_settings(settings ${ARGV}) + old_conan_cmake_install(SETTINGS ${settings} ${ARGV}) + endif() + endif() + + if (NOT ARGUMENTS_NO_LOAD) + conan_load_buildinfo() + endif() + + if(ARGUMENTS_BASIC_SETUP) + foreach(_option CMAKE_TARGETS KEEP_RPATHS NO_OUTPUT_DIRS SKIP_STD) + if(ARGUMENTS_${_option}) + if(${_option} STREQUAL "CMAKE_TARGETS") + list(APPEND _setup_options "TARGETS") + else() + list(APPEND _setup_options ${_option}) + endif() + endif() + endforeach() + conan_basic_setup(${_setup_options}) + endif() +endmacro() + +macro(conan_check) + # Checks conan availability in PATH + # Arguments REQUIRED, DETECT_QUIET and VERSION are optional + # Example usage: + # conan_check(VERSION 1.0.0 REQUIRED) + set(options REQUIRED DETECT_QUIET) + set(oneValueArgs VERSION) + cmake_parse_arguments(CONAN "${options}" "${oneValueArgs}" "" ${ARGN}) + if(NOT CONAN_DETECT_QUIET) + message(STATUS "Conan: checking conan executable") + endif() + + find_program(CONAN_CMD conan) + if(NOT CONAN_CMD AND CONAN_REQUIRED) + message(FATAL_ERROR "Conan executable not found! Please install conan.") + endif() + if(NOT CONAN_DETECT_QUIET) + message(STATUS "Conan: Found program ${CONAN_CMD}") + endif() + execute_process(COMMAND ${CONAN_CMD} --version + RESULT_VARIABLE return_code + OUTPUT_VARIABLE CONAN_VERSION_OUTPUT + ERROR_VARIABLE CONAN_VERSION_OUTPUT) + + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan --version failed='${return_code}'") + endif() + + if(NOT CONAN_DETECT_QUIET) + string(STRIP "${CONAN_VERSION_OUTPUT}" _CONAN_VERSION_OUTPUT) + message(STATUS "Conan: Version found ${_CONAN_VERSION_OUTPUT}") + endif() + + if(DEFINED CONAN_VERSION) + string(REGEX MATCH ".*Conan version ([0-9]+\\.[0-9]+\\.[0-9]+)" FOO + "${CONAN_VERSION_OUTPUT}") + if(${CMAKE_MATCH_1} VERSION_LESS ${CONAN_VERSION}) + message(FATAL_ERROR "Conan outdated. Installed: ${CMAKE_MATCH_1}, \ + required: ${CONAN_VERSION}. Consider updating via 'pip \ + install conan==${CONAN_VERSION}'.") + endif() + endif() +endmacro() + +function(conan_add_remote) + # Adds a remote + # Arguments URL and NAME are required, INDEX, COMMAND and VERIFY_SSL are optional + # Example usage: + # conan_add_remote(NAME bincrafters INDEX 1 + # URL https://api.bintray.com/conan/bincrafters/public-conan + # VERIFY_SSL True) + set(oneValueArgs URL NAME INDEX COMMAND VERIFY_SSL) + cmake_parse_arguments(CONAN "" "${oneValueArgs}" "" ${ARGN}) + + if(DEFINED CONAN_INDEX) + set(CONAN_INDEX_ARG "-i ${CONAN_INDEX}") + endif() + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED DETECT_QUIET) + endif() + set(CONAN_VERIFY_SSL_ARG "True") + if(DEFINED CONAN_VERIFY_SSL) + set(CONAN_VERIFY_SSL_ARG ${CONAN_VERIFY_SSL}) + endif() + message(STATUS "Conan: Adding ${CONAN_NAME} remote repository (${CONAN_URL}) verify ssl (${CONAN_VERIFY_SSL_ARG})") + execute_process(COMMAND ${CONAN_CMD} remote add ${CONAN_NAME} ${CONAN_INDEX_ARG} -f ${CONAN_URL} ${CONAN_VERIFY_SSL_ARG} + RESULT_VARIABLE return_code) + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan remote failed='${return_code}'") + endif() +endfunction() + +macro(conan_config_install) + # install a full configuration from a local or remote zip file + # Argument ITEM is required, arguments TYPE, SOURCE, TARGET and VERIFY_SSL are optional + # Example usage: + # conan_config_install(ITEM https://github.com/conan-io/cmake-conan.git + # TYPE git SOURCE source-folder TARGET target-folder VERIFY_SSL false) + set(oneValueArgs ITEM TYPE SOURCE TARGET VERIFY_SSL) + set(multiValueArgs ARGS) + cmake_parse_arguments(CONAN "" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) + + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + + if(DEFINED CONAN_VERIFY_SSL) + set(CONAN_VERIFY_SSL_ARG "--verify-ssl=${CONAN_VERIFY_SSL}") + endif() + + if(DEFINED CONAN_TYPE) + set(CONAN_TYPE_ARG "--type=${CONAN_TYPE}") + endif() + + if(DEFINED CONAN_ARGS) + set(CONAN_ARGS_ARGS "--args=\"${CONAN_ARGS}\"") + endif() + + if(DEFINED CONAN_SOURCE) + set(CONAN_SOURCE_ARGS "--source-folder=${CONAN_SOURCE}") + endif() + + if(DEFINED CONAN_TARGET) + set(CONAN_TARGET_ARGS "--target-folder=${CONAN_TARGET}") + endif() + + set (CONAN_CONFIG_INSTALL_ARGS ${CONAN_VERIFY_SSL_ARG} + ${CONAN_TYPE_ARG} + ${CONAN_ARGS_ARGS} + ${CONAN_SOURCE_ARGS} + ${CONAN_TARGET_ARGS}) + + message(STATUS "Conan: Installing config from ${CONAN_ITEM}") + execute_process(COMMAND ${CONAN_CMD} config install ${CONAN_ITEM} ${CONAN_CONFIG_INSTALL_ARGS} + RESULT_VARIABLE return_code) + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan config failed='${return_code}'") + endif() +endmacro() diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/conan_provider.cmake b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/conan_provider.cmake new file mode 100644 index 0000000..e5fa9ce --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/conan_provider.cmake @@ -0,0 +1,655 @@ +# https://github.com/conan-io/cmake-conan/blob/develop2/conan_provider.cmake +# commit: f6464d1e13ef7a47c569f5061f9607ea63339d39 +# +# The MIT License (MIT) +# +# Copyright (c) 2019 JFrog +# +# 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. + +set(CONAN_MINIMUM_VERSION 2.0.5) + + +function(detect_os OS OS_API_LEVEL OS_SDK OS_SUBSYSTEM OS_VERSION) + # it could be cross compilation + message(STATUS "CMake-Conan: cmake_system_name=${CMAKE_SYSTEM_NAME}") + if(CMAKE_SYSTEM_NAME AND NOT CMAKE_SYSTEM_NAME STREQUAL "Generic") + if(CMAKE_SYSTEM_NAME STREQUAL "Darwin") + set(${OS} Macos PARENT_SCOPE) + elseif(CMAKE_SYSTEM_NAME STREQUAL "QNX") + set(${OS} Neutrino PARENT_SCOPE) + elseif(CMAKE_SYSTEM_NAME STREQUAL "CYGWIN") + set(${OS} Windows PARENT_SCOPE) + set(${OS_SUBSYSTEM} cygwin PARENT_SCOPE) + elseif(CMAKE_SYSTEM_NAME MATCHES "^MSYS") + set(${OS} Windows PARENT_SCOPE) + set(${OS_SUBSYSTEM} msys2 PARENT_SCOPE) + else() + set(${OS} ${CMAKE_SYSTEM_NAME} PARENT_SCOPE) + endif() + if(CMAKE_SYSTEM_NAME STREQUAL "Android") + if(DEFINED ANDROID_PLATFORM) + string(REGEX MATCH "[0-9]+" _OS_API_LEVEL ${ANDROID_PLATFORM}) + elseif(DEFINED CMAKE_SYSTEM_VERSION) + set(_OS_API_LEVEL ${CMAKE_SYSTEM_VERSION}) + endif() + message(STATUS "CMake-Conan: android api level=${_OS_API_LEVEL}") + set(${OS_API_LEVEL} ${_OS_API_LEVEL} PARENT_SCOPE) + endif() + if(CMAKE_SYSTEM_NAME MATCHES "Darwin|iOS|tvOS|watchOS") + # CMAKE_OSX_SYSROOT contains the full path to the SDK for MakeFile/Ninja + # generators, but just has the original input string for Xcode. + if(NOT IS_DIRECTORY ${CMAKE_OSX_SYSROOT}) + set(_OS_SDK ${CMAKE_OSX_SYSROOT}) + else() + if(CMAKE_OSX_SYSROOT MATCHES Simulator) + set(apple_platform_suffix simulator) + else() + set(apple_platform_suffix os) + endif() + if(CMAKE_OSX_SYSROOT MATCHES AppleTV) + set(_OS_SDK "appletv${apple_platform_suffix}") + elseif(CMAKE_OSX_SYSROOT MATCHES iPhone) + set(_OS_SDK "iphone${apple_platform_suffix}") + elseif(CMAKE_OSX_SYSROOT MATCHES Watch) + set(_OS_SDK "watch${apple_platform_suffix}") + endif() + endif() + if(DEFINED _OS_SDK) + message(STATUS "CMake-Conan: cmake_osx_sysroot=${CMAKE_OSX_SYSROOT}") + set(${OS_SDK} ${_OS_SDK} PARENT_SCOPE) + endif() + if(DEFINED CMAKE_OSX_DEPLOYMENT_TARGET) + message(STATUS "CMake-Conan: cmake_osx_deployment_target=${CMAKE_OSX_DEPLOYMENT_TARGET}") + set(${OS_VERSION} ${CMAKE_OSX_DEPLOYMENT_TARGET} PARENT_SCOPE) + endif() + endif() + endif() +endfunction() + + +function(detect_arch ARCH) + # CMAKE_OSX_ARCHITECTURES can contain multiple architectures, but Conan only supports one. + # Therefore this code only finds one. If the recipes support multiple architectures, the + # build will work. Otherwise, there will be a linker error for the missing architecture(s). + if(DEFINED CMAKE_OSX_ARCHITECTURES) + string(REPLACE " " ";" apple_arch_list "${CMAKE_OSX_ARCHITECTURES}") + list(LENGTH apple_arch_list apple_arch_count) + if(apple_arch_count GREATER 1) + message(WARNING "CMake-Conan: Multiple architectures detected, this will only work if Conan recipe(s) produce fat binaries.") + endif() + endif() + if(CMAKE_SYSTEM_NAME MATCHES "Darwin|iOS|tvOS|watchOS" AND NOT CMAKE_OSX_ARCHITECTURES STREQUAL "") + set(host_arch ${CMAKE_OSX_ARCHITECTURES}) + elseif(MSVC) + set(host_arch ${CMAKE_CXX_COMPILER_ARCHITECTURE_ID}) + else() + set(host_arch ${CMAKE_SYSTEM_PROCESSOR}) + endif() + if(host_arch MATCHES "aarch64|arm64|ARM64") + set(_ARCH armv8) + elseif(host_arch MATCHES "armv7|armv7-a|armv7l|ARMV7") + set(_ARCH armv7) + elseif(host_arch MATCHES armv7s) + set(_ARCH armv7s) + elseif(host_arch MATCHES "i686|i386|X86") + set(_ARCH x86) + elseif(host_arch MATCHES "AMD64|amd64|x86_64|x64") + set(_ARCH x86_64) + endif() + message(STATUS "CMake-Conan: cmake_system_processor=${_ARCH}") + set(${ARCH} ${_ARCH} PARENT_SCOPE) +endfunction() + + +function(detect_cxx_standard CXX_STANDARD) + set(${CXX_STANDARD} ${CMAKE_CXX_STANDARD} PARENT_SCOPE) + if(CMAKE_CXX_EXTENSIONS) + set(${CXX_STANDARD} "gnu${CMAKE_CXX_STANDARD}" PARENT_SCOPE) + endif() +endfunction() + + +macro(detect_gnu_libstdcxx) + # _CONAN_IS_GNU_LIBSTDCXX true if GNU libstdc++ + check_cxx_source_compiles(" + #include + #if !defined(__GLIBCXX__) && !defined(__GLIBCPP__) + static_assert(false); + #endif + int main(){}" _CONAN_IS_GNU_LIBSTDCXX) + + # _CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI true if C++11 ABI + check_cxx_source_compiles(" + #include + static_assert(sizeof(std::string) != sizeof(void*), \"using libstdc++\"); + int main () {}" _CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) + + set(_CONAN_GNU_LIBSTDCXX_SUFFIX "") + if(_CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) + set(_CONAN_GNU_LIBSTDCXX_SUFFIX "11") + endif() + unset (_CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) +endmacro() + + +macro(detect_libcxx) + # _CONAN_IS_LIBCXX true if LLVM libc++ + check_cxx_source_compiles(" + #include + #if !defined(_LIBCPP_VERSION) + static_assert(false); + #endif + int main(){}" _CONAN_IS_LIBCXX) +endmacro() + + +function(detect_lib_cxx LIB_CXX) + if(CMAKE_SYSTEM_NAME STREQUAL "Android") + message(STATUS "CMake-Conan: android_stl=${CMAKE_ANDROID_STL_TYPE}") + set(${LIB_CXX} ${CMAKE_ANDROID_STL_TYPE} PARENT_SCOPE) + return() + endif() + + include(CheckCXXSourceCompiles) + + if(CMAKE_CXX_COMPILER_ID MATCHES "GNU") + detect_gnu_libstdcxx() + set(${LIB_CXX} "libstdc++${_CONAN_GNU_LIBSTDCXX_SUFFIX}" PARENT_SCOPE) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang") + set(${LIB_CXX} "libc++" PARENT_SCOPE) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND NOT CMAKE_SYSTEM_NAME MATCHES "Windows") + # Check for libc++ + detect_libcxx() + if(_CONAN_IS_LIBCXX) + set(${LIB_CXX} "libc++" PARENT_SCOPE) + return() + endif() + + # Check for libstdc++ + detect_gnu_libstdcxx() + if(_CONAN_IS_GNU_LIBSTDCXX) + set(${LIB_CXX} "libstdc++${_CONAN_GNU_LIBSTDCXX_SUFFIX}" PARENT_SCOPE) + return() + endif() + + # TODO: it would be an error if we reach this point + elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") + # Do nothing - compiler.runtime and compiler.runtime_type + # should be handled separately: https://github.com/conan-io/cmake-conan/pull/516 + return() + else() + # TODO: unable to determine, ask user to provide a full profile file instead + endif() +endfunction() + + +function(detect_compiler COMPILER COMPILER_VERSION COMPILER_RUNTIME COMPILER_RUNTIME_TYPE) + if(DEFINED CMAKE_CXX_COMPILER_ID) + set(_COMPILER ${CMAKE_CXX_COMPILER_ID}) + set(_COMPILER_VERSION ${CMAKE_CXX_COMPILER_VERSION}) + else() + if(NOT DEFINED CMAKE_C_COMPILER_ID) + message(FATAL_ERROR "C or C++ compiler not defined") + endif() + set(_COMPILER ${CMAKE_C_COMPILER_ID}) + set(_COMPILER_VERSION ${CMAKE_C_COMPILER_VERSION}) + endif() + + message(STATUS "CMake-Conan: CMake compiler=${_COMPILER}") + message(STATUS "CMake-Conan: CMake compiler version=${_COMPILER_VERSION}") + + if(_COMPILER MATCHES MSVC) + set(_COMPILER "msvc") + string(SUBSTRING ${MSVC_VERSION} 0 3 _COMPILER_VERSION) + # Configure compiler.runtime and compiler.runtime_type settings for MSVC + if(CMAKE_MSVC_RUNTIME_LIBRARY) + set(_msvc_runtime_library ${CMAKE_MSVC_RUNTIME_LIBRARY}) + else() + set(_msvc_runtime_library MultiThreaded$<$:Debug>DLL) # default value documented by CMake + endif() + + set(_KNOWN_MSVC_RUNTIME_VALUES "") + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreaded MultiThreadedDLL) + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreadedDebug MultiThreadedDebugDLL) + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreaded$<$:Debug> MultiThreaded$<$:Debug>DLL) + + # only accept the 6 possible values, otherwise we don't don't know to map this + if(NOT _msvc_runtime_library IN_LIST _KNOWN_MSVC_RUNTIME_VALUES) + message(FATAL_ERROR "CMake-Conan: unable to map MSVC runtime: ${_msvc_runtime_library} to Conan settings") + endif() + + # Runtime is "dynamic" in all cases if it ends in DLL + if(_msvc_runtime_library MATCHES ".*DLL$") + set(_COMPILER_RUNTIME "dynamic") + else() + set(_COMPILER_RUNTIME "static") + endif() + message(STATUS "CMake-Conan: CMake compiler.runtime=${_COMPILER_RUNTIME}") + + # Only define compiler.runtime_type when explicitly requested + # If a generator expression is used, let Conan handle it conditional on build_type + if(NOT _msvc_runtime_library MATCHES ":Debug>") + if(_msvc_runtime_library MATCHES "Debug") + set(_COMPILER_RUNTIME_TYPE "Debug") + else() + set(_COMPILER_RUNTIME_TYPE "Release") + endif() + message(STATUS "CMake-Conan: CMake compiler.runtime_type=${_COMPILER_RUNTIME_TYPE}") + endif() + + unset(_KNOWN_MSVC_RUNTIME_VALUES) + + elseif(_COMPILER MATCHES AppleClang) + set(_COMPILER "apple-clang") + string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) + list(GET VERSION_LIST 0 _COMPILER_VERSION) + elseif(_COMPILER MATCHES Clang) + set(_COMPILER "clang") + string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) + list(GET VERSION_LIST 0 _COMPILER_VERSION) + elseif(_COMPILER MATCHES GNU) + set(_COMPILER "gcc") + string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) + list(GET VERSION_LIST 0 _COMPILER_VERSION) + endif() + + message(STATUS "CMake-Conan: [settings] compiler=${_COMPILER}") + message(STATUS "CMake-Conan: [settings] compiler.version=${_COMPILER_VERSION}") + if (_COMPILER_RUNTIME) + message(STATUS "CMake-Conan: [settings] compiler.runtime=${_COMPILER_RUNTIME}") + endif() + if (_COMPILER_RUNTIME_TYPE) + message(STATUS "CMake-Conan: [settings] compiler.runtime_type=${_COMPILER_RUNTIME_TYPE}") + endif() + + set(${COMPILER} ${_COMPILER} PARENT_SCOPE) + set(${COMPILER_VERSION} ${_COMPILER_VERSION} PARENT_SCOPE) + set(${COMPILER_RUNTIME} ${_COMPILER_RUNTIME} PARENT_SCOPE) + set(${COMPILER_RUNTIME_TYPE} ${_COMPILER_RUNTIME_TYPE} PARENT_SCOPE) +endfunction() + + +function(detect_build_type BUILD_TYPE) + get_property(_MULTICONFIG_GENERATOR GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + if(NOT _MULTICONFIG_GENERATOR) + # Only set when we know we are in a single-configuration generator + # Note: we may want to fail early if `CMAKE_BUILD_TYPE` is not defined + set(${BUILD_TYPE} ${CMAKE_BUILD_TYPE} PARENT_SCOPE) + endif() +endfunction() + +macro(set_conan_compiler_if_appleclang lang command output_variable) + if(CMAKE_${lang}_COMPILER_ID STREQUAL "AppleClang") + execute_process(COMMAND xcrun --find ${command} + OUTPUT_VARIABLE _xcrun_out OUTPUT_STRIP_TRAILING_WHITESPACE) + cmake_path(GET _xcrun_out PARENT_PATH _xcrun_toolchain_path) + cmake_path(GET CMAKE_${lang}_COMPILER PARENT_PATH _compiler_parent_path) + if ("${_xcrun_toolchain_path}" STREQUAL "${_compiler_parent_path}") + set(${output_variable} "") + endif() + unset(_xcrun_out) + unset(_xcrun_toolchain_path) + unset(_compiler_parent_path) + endif() +endmacro() + + +macro(append_compiler_executables_configuration) + set(_conan_c_compiler "") + set(_conan_cpp_compiler "") + if(CMAKE_C_COMPILER) + set(_conan_c_compiler "\"c\":\"${CMAKE_C_COMPILER}\",") + set_conan_compiler_if_appleclang(C cc _conan_c_compiler) + else() + message(WARNING "CMake-Conan: The C compiler is not defined. " + "Please define CMAKE_C_COMPILER or enable the C language.") + endif() + if(CMAKE_CXX_COMPILER) + set(_conan_cpp_compiler "\"cpp\":\"${CMAKE_CXX_COMPILER}\"") + set_conan_compiler_if_appleclang(CXX c++ _conan_cpp_compiler) + else() + message(WARNING "CMake-Conan: The C++ compiler is not defined. " + "Please define CMAKE_CXX_COMPILER or enable the C++ language.") + endif() + + if(NOT "x${_conan_c_compiler}${_conan_cpp_compiler}" STREQUAL "x") + string(APPEND PROFILE "tools.build:compiler_executables={${_conan_c_compiler}${_conan_cpp_compiler}}\n") + endif() + unset(_conan_c_compiler) + unset(_conan_cpp_compiler) +endmacro() + + +function(detect_host_profile output_file) + detect_os(MYOS MYOS_API_LEVEL MYOS_SDK MYOS_SUBSYSTEM MYOS_VERSION) + detect_arch(MYARCH) + detect_compiler(MYCOMPILER MYCOMPILER_VERSION MYCOMPILER_RUNTIME MYCOMPILER_RUNTIME_TYPE) + detect_cxx_standard(MYCXX_STANDARD) + detect_lib_cxx(MYLIB_CXX) + detect_build_type(MYBUILD_TYPE) + + set(PROFILE "") + string(APPEND PROFILE "[settings]\n") + if(MYARCH) + string(APPEND PROFILE arch=${MYARCH} "\n") + endif() + if(MYOS) + string(APPEND PROFILE os=${MYOS} "\n") + endif() + if(MYOS_API_LEVEL) + string(APPEND PROFILE os.api_level=${MYOS_API_LEVEL} "\n") + endif() + if(MYOS_VERSION) + string(APPEND PROFILE os.version=${MYOS_VERSION} "\n") + endif() + if(MYOS_SDK) + string(APPEND PROFILE os.sdk=${MYOS_SDK} "\n") + endif() + if(MYOS_SUBSYSTEM) + string(APPEND PROFILE os.subsystem=${MYOS_SUBSYSTEM} "\n") + endif() + if(MYCOMPILER) + string(APPEND PROFILE compiler=${MYCOMPILER} "\n") + endif() + if(MYCOMPILER_VERSION) + string(APPEND PROFILE compiler.version=${MYCOMPILER_VERSION} "\n") + endif() + if(MYCOMPILER_RUNTIME) + string(APPEND PROFILE compiler.runtime=${MYCOMPILER_RUNTIME} "\n") + endif() + if(MYCOMPILER_RUNTIME_TYPE) + string(APPEND PROFILE compiler.runtime_type=${MYCOMPILER_RUNTIME_TYPE} "\n") + endif() + if(MYCXX_STANDARD) + string(APPEND PROFILE compiler.cppstd=${MYCXX_STANDARD} "\n") + endif() + if(MYLIB_CXX) + string(APPEND PROFILE compiler.libcxx=${MYLIB_CXX} "\n") + endif() + if(MYBUILD_TYPE) + string(APPEND PROFILE "build_type=${MYBUILD_TYPE}\n") + endif() + + if(NOT DEFINED output_file) + set(_FN "${CMAKE_BINARY_DIR}/profile") + else() + set(_FN ${output_file}) + endif() + + string(APPEND PROFILE "[conf]\n") + string(APPEND PROFILE "tools.cmake.cmaketoolchain:generator=${CMAKE_GENERATOR}\n") + + # propagate compilers via profile + append_compiler_executables_configuration() + + if(MYOS STREQUAL "Android") + string(APPEND PROFILE "tools.android:ndk_path=${CMAKE_ANDROID_NDK}\n") + endif() + + message(STATUS "CMake-Conan: Creating profile ${_FN}") + file(WRITE ${_FN} ${PROFILE}) + message(STATUS "CMake-Conan: Profile: \n${PROFILE}") +endfunction() + + +function(conan_profile_detect_default) + message(STATUS "CMake-Conan: Checking if a default profile exists") + execute_process(COMMAND ${CONAN_COMMAND} profile path default + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_stdout + ERROR_VARIABLE conan_stderr + ECHO_ERROR_VARIABLE # show the text output regardless + ECHO_OUTPUT_VARIABLE + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + if(NOT ${return_code} EQUAL "0") + message(STATUS "CMake-Conan: The default profile doesn't exist, detecting it.") + execute_process(COMMAND ${CONAN_COMMAND} profile detect + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_stdout + ERROR_VARIABLE conan_stderr + ECHO_ERROR_VARIABLE # show the text output regardless + ECHO_OUTPUT_VARIABLE + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + endif() +endfunction() + + +function(conan_install) + cmake_parse_arguments(ARGS CONAN_ARGS ${ARGN}) + set(CONAN_OUTPUT_FOLDER ${CMAKE_BINARY_DIR}/conan) + # Invoke "conan install" with the provided arguments + set(CONAN_ARGS ${CONAN_ARGS} -of=${CONAN_OUTPUT_FOLDER}) + message(STATUS "CMake-Conan: conan install ${CMAKE_SOURCE_DIR} ${CONAN_ARGS} ${ARGN}") + + + # In case there was not a valid cmake executable in the PATH, we inject the + # same we used to invoke the provider to the PATH + if(DEFINED PATH_TO_CMAKE_BIN) + set(_OLD_PATH $ENV{PATH}) + set(ENV{PATH} "$ENV{PATH}:${PATH_TO_CMAKE_BIN}") + endif() + + execute_process(COMMAND ${CONAN_COMMAND} install ${CMAKE_SOURCE_DIR} ${CONAN_ARGS} ${ARGN} --format=json + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_stdout + ERROR_VARIABLE conan_stderr + ECHO_ERROR_VARIABLE # show the text output regardless + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + if(DEFINED PATH_TO_CMAKE_BIN) + set(ENV{PATH} "${_OLD_PATH}") + endif() + + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan install failed='${return_code}'") + else() + # the files are generated in a folder that depends on the layout used, if + # one is specified, but we don't know a priori where this is. + # TODO: this can be made more robust if Conan can provide this in the json output + string(JSON CONAN_GENERATORS_FOLDER GET ${conan_stdout} graph nodes 0 generators_folder) + cmake_path(CONVERT ${CONAN_GENERATORS_FOLDER} TO_CMAKE_PATH_LIST CONAN_GENERATORS_FOLDER) + # message("conan stdout: ${conan_stdout}") + message(STATUS "CMake-Conan: CONAN_GENERATORS_FOLDER=${CONAN_GENERATORS_FOLDER}") + set_property(GLOBAL PROPERTY CONAN_GENERATORS_FOLDER "${CONAN_GENERATORS_FOLDER}") + # reconfigure on conanfile changes + string(JSON CONANFILE GET ${conan_stdout} graph nodes 0 label) + message(STATUS "CMake-Conan: CONANFILE=${CMAKE_SOURCE_DIR}/${CONANFILE}") + set_property(DIRECTORY ${CMAKE_SOURCE_DIR} APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${CMAKE_SOURCE_DIR}/${CONANFILE}") + # success + set_property(GLOBAL PROPERTY CONAN_INSTALL_SUCCESS TRUE) + endif() +endfunction() + + +function(conan_get_version conan_command conan_current_version) + execute_process( + COMMAND ${conan_command} --version + OUTPUT_VARIABLE conan_output + RESULT_VARIABLE conan_result + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(conan_result) + message(FATAL_ERROR "CMake-Conan: Error when trying to run Conan") + endif() + + string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" conan_version ${conan_output}) + set(${conan_current_version} ${conan_version} PARENT_SCOPE) +endfunction() + + +function(conan_version_check) + set(options ) + set(oneValueArgs MINIMUM CURRENT) + set(multiValueArgs ) + cmake_parse_arguments(CONAN_VERSION_CHECK + "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) + + if(NOT CONAN_VERSION_CHECK_MINIMUM) + message(FATAL_ERROR "CMake-Conan: Required parameter MINIMUM not set!") + endif() + if(NOT CONAN_VERSION_CHECK_CURRENT) + message(FATAL_ERROR "CMake-Conan: Required parameter CURRENT not set!") + endif() + + if(CONAN_VERSION_CHECK_CURRENT VERSION_LESS CONAN_VERSION_CHECK_MINIMUM) + message(FATAL_ERROR "CMake-Conan: Conan version must be ${CONAN_VERSION_CHECK_MINIMUM} or later") + endif() +endfunction() + + +macro(construct_profile_argument argument_variable profile_list) + set(${argument_variable} "") + if("${profile_list}" STREQUAL "CONAN_HOST_PROFILE") + set(_arg_flag "--profile:host=") + elseif("${profile_list}" STREQUAL "CONAN_BUILD_PROFILE") + set(_arg_flag "--profile:build=") + endif() + + set(_profile_list "${${profile_list}}") + list(TRANSFORM _profile_list REPLACE "auto-cmake" "${CMAKE_BINARY_DIR}/conan_host_profile") + list(TRANSFORM _profile_list PREPEND ${_arg_flag}) + set(${argument_variable} ${_profile_list}) + + unset(_arg_flag) + unset(_profile_list) +endmacro() + + +macro(conan_provide_dependency method package_name) + set_property(GLOBAL PROPERTY CONAN_PROVIDE_DEPENDENCY_INVOKED TRUE) + get_property(_conan_install_success GLOBAL PROPERTY CONAN_INSTALL_SUCCESS) + if(NOT _conan_install_success) + find_program(CONAN_COMMAND "conan" REQUIRED) + conan_get_version(${CONAN_COMMAND} CONAN_CURRENT_VERSION) + conan_version_check(MINIMUM ${CONAN_MINIMUM_VERSION} CURRENT ${CONAN_CURRENT_VERSION}) + message(STATUS "CMake-Conan: first find_package() found. Installing dependencies with Conan") + if("default" IN_LIST CONAN_HOST_PROFILE OR "default" IN_LIST CONAN_BUILD_PROFILE) + conan_profile_detect_default() + endif() + if("auto-cmake" IN_LIST CONAN_HOST_PROFILE) + detect_host_profile(${CMAKE_BINARY_DIR}/conan_host_profile) + endif() + construct_profile_argument(_host_profile_flags CONAN_HOST_PROFILE) + construct_profile_argument(_build_profile_flags CONAN_BUILD_PROFILE) + if(EXISTS "${CMAKE_SOURCE_DIR}/conanfile.py") + file(READ "${CMAKE_SOURCE_DIR}/conanfile.py" outfile) + if(NOT "${outfile}" MATCHES ".*CMakeDeps.*") + message(WARNING "Cmake-conan: CMakeDeps generator was not defined in the conanfile") + endif() + set(generator "") + elseif (EXISTS "${CMAKE_SOURCE_DIR}/conanfile.txt") + file(READ "${CMAKE_SOURCE_DIR}/conanfile.txt" outfile) + if(NOT "${outfile}" MATCHES ".*CMakeDeps.*") + message(WARNING "Cmake-conan: CMakeDeps generator was not defined in the conanfile. " + "Please define the generator as it will be mandatory in the future") + endif() + set(generator "-g;CMakeDeps") + endif() + get_property(_multiconfig_generator GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + if(NOT _multiconfig_generator) + message(STATUS "CMake-Conan: Installing single configuration ${CMAKE_BUILD_TYPE}") + conan_install(${_host_profile_flags} ${_build_profile_flags} ${CONAN_INSTALL_ARGS} ${generator}) + else() + message(STATUS "CMake-Conan: Installing both Debug and Release") + conan_install(${_host_profile_flags} ${_build_profile_flags} -s build_type=Release ${CONAN_INSTALL_ARGS} ${generator}) + conan_install(${_host_profile_flags} ${_build_profile_flags} -s build_type=Debug ${CONAN_INSTALL_ARGS} ${generator}) + endif() + unset(_host_profile_flags) + unset(_build_profile_flags) + unset(_multiconfig_generator) + unset(_conan_install_success) + else() + message(STATUS "CMake-Conan: find_package(${ARGV1}) found, 'conan install' already ran") + unset(_conan_install_success) + endif() + + get_property(_conan_generators_folder GLOBAL PROPERTY CONAN_GENERATORS_FOLDER) + + # Ensure that we consider Conan-provided packages ahead of any other, + # irrespective of other settings that modify the search order or search paths + # This follows the guidelines from the find_package documentation + # (https://cmake.org/cmake/help/latest/command/find_package.html): + # find_package ( PATHS paths... NO_DEFAULT_PATH) + # find_package () + + # Filter out `REQUIRED` from the argument list, as the first call may fail + set(_find_args_${package_name} "${ARGN}") + list(REMOVE_ITEM _find_args_${package_name} "REQUIRED") + if(NOT "MODULE" IN_LIST _find_args_${package_name}) + find_package(${package_name} ${_find_args_${package_name}} BYPASS_PROVIDER PATHS "${_conan_generators_folder}" NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + unset(_find_args_${package_name}) + endif() + + # Invoke find_package a second time - if the first call succeeded, + # this will simply reuse the result. If not, fall back to CMake default search + # behaviour, also allowing modules to be searched. + if(NOT ${package_name}_FOUND) + list(FIND CMAKE_MODULE_PATH "${_conan_generators_folder}" _index) + if(_index EQUAL -1) + list(PREPEND CMAKE_MODULE_PATH "${_conan_generators_folder}") + endif() + unset(_index) + find_package(${package_name} ${ARGN} BYPASS_PROVIDER) + list(REMOVE_ITEM CMAKE_MODULE_PATH "${_conan_generators_folder}") + endif() +endmacro() + +#[=[ not needed by Qt Creator, and if not commented it would break the auto-setup feature + +cmake_language( + SET_DEPENDENCY_PROVIDER conan_provide_dependency + SUPPORTED_METHODS FIND_PACKAGE +) + + +macro(conan_provide_dependency_check) + set(_CONAN_PROVIDE_DEPENDENCY_INVOKED FALSE) + get_property(_CONAN_PROVIDE_DEPENDENCY_INVOKED GLOBAL PROPERTY CONAN_PROVIDE_DEPENDENCY_INVOKED) + if(NOT _CONAN_PROVIDE_DEPENDENCY_INVOKED) + message(WARNING "Conan is correctly configured as dependency provider, " + "but Conan has not been invoked. Please add at least one " + "call to `find_package()`.") + if(DEFINED CONAN_COMMAND) + # supress warning in case `CONAN_COMMAND` was specified but unused. + set(_CONAN_COMMAND ${CONAN_COMMAND}) + unset(_CONAN_COMMAND) + endif() + endif() + unset(_CONAN_PROVIDE_DEPENDENCY_INVOKED) +endmacro() + + +# Add a deferred call at the end of processing the top-level directory +# to check if the dependency provider was invoked at all. +cmake_language(DEFER DIRECTORY "${CMAKE_SOURCE_DIR}" CALL conan_provide_dependency_check) + +]=] + +# Configurable variables for Conan profiles +set(CONAN_HOST_PROFILE "default;auto-cmake" CACHE STRING "Conan host profile") +set(CONAN_BUILD_PROFILE "default" CACHE STRING "Conan build profile") +set(CONAN_INSTALL_ARGS "--build=missing" CACHE STRING "Command line arguments for conan install") + +find_program(_cmake_program NAMES cmake NO_PACKAGE_ROOT_PATH NO_CMAKE_PATH NO_CMAKE_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH NO_CMAKE_FIND_ROOT_PATH) +if(NOT _cmake_program) + get_filename_component(PATH_TO_CMAKE_BIN "${CMAKE_COMMAND}" DIRECTORY) + set(PATH_TO_CMAKE_BIN "${PATH_TO_CMAKE_BIN}" CACHE INTERNAL "Path where the CMake executable is") +endif() + diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QAction.7FB46920BB946605.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QAction.7FB46920BB946605.idx new file mode 100644 index 0000000..e29e21c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QAction.7FB46920BB946605.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QApplication.366D6D8BCAB2D422.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QApplication.366D6D8BCAB2D422.idx new file mode 100644 index 0000000..bb01e82 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QApplication.366D6D8BCAB2D422.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QIcon.1D6BF8673A9AC35D.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QIcon.1D6BF8673A9AC35D.idx new file mode 100644 index 0000000..74335dc Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QIcon.1D6BF8673A9AC35D.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLabel.F1C6DB876A2654F2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLabel.F1C6DB876A2654F2.idx new file mode 100644 index 0000000..e74e99c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLabel.F1C6DB876A2654F2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLineEdit.F7C5D7FB9BA57ECA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLineEdit.F7C5D7FB9BA57ECA.idx new file mode 100644 index 0000000..f02aa4a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLineEdit.F7C5D7FB9BA57ECA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QListWidget.6051EEA4C3755783.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QListWidget.6051EEA4C3755783.idx new file mode 100644 index 0000000..e9ab08e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QListWidget.6051EEA4C3755783.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLocale.4B3BCCC4D71D5877.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLocale.4B3BCCC4D71D5877.idx new file mode 100644 index 0000000..92d2f81 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLocale.4B3BCCC4D71D5877.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMainWindow.646C5FB5BEAD0EFA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMainWindow.646C5FB5BEAD0EFA.idx new file mode 100644 index 0000000..40a02ac Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMainWindow.646C5FB5BEAD0EFA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMenuBar.44BD197720ADDF3B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMenuBar.44BD197720ADDF3B.idx new file mode 100644 index 0000000..99d6283 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMenuBar.44BD197720ADDF3B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QObject.ACFBDEF8B7D91336.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QObject.ACFBDEF8B7D91336.idx new file mode 100644 index 0000000..8f4bfaf Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QObject.ACFBDEF8B7D91336.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QPushButton.DBA1E2EAB13EDD38.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QPushButton.DBA1E2EAB13EDD38.idx new file mode 100644 index 0000000..d5607b7 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QPushButton.DBA1E2EAB13EDD38.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSignalMapper.907E2DCE2086FD9A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSignalMapper.907E2DCE2086FD9A.idx new file mode 100644 index 0000000..c94952a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSignalMapper.907E2DCE2086FD9A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSpinBox.CF97918682F301F4.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSpinBox.CF97918682F301F4.idx new file mode 100644 index 0000000..5187756 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSpinBox.CF97918682F301F4.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSplitter.5E7AD57775E11900.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSplitter.5E7AD57775E11900.idx new file mode 100644 index 0000000..4fb3f97 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSplitter.5E7AD57775E11900.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QStatusBar.BCC78BAE2BF19EA0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QStatusBar.BCC78BAE2BF19EA0.idx new file mode 100644 index 0000000..3aac96a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QStatusBar.BCC78BAE2BF19EA0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QString.9968D4C81E555412.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QString.9968D4C81E555412.idx new file mode 100644 index 0000000..1f13256 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QString.9968D4C81E555412.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTabWidget.3073F9F55091451C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTabWidget.3073F9F55091451C.idx new file mode 100644 index 0000000..cf9dcc0 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTabWidget.3073F9F55091451C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTimeEdit.3F6A516A0BEAF6DC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTimeEdit.3F6A516A0BEAF6DC.idx new file mode 100644 index 0000000..0b1bd6c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTimeEdit.3F6A516A0BEAF6DC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QToolBar.FF1E9C402A982194.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QToolBar.FF1E9C402A982194.idx new file mode 100644 index 0000000..3faa2bc Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QToolBar.FF1E9C402A982194.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTranslator.664743524C17EA36.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTranslator.664743524C17EA36.idx new file mode 100644 index 0000000..a944974 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTranslator.664743524C17EA36.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVBoxLayout.7AF4074B70999221.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVBoxLayout.7AF4074B70999221.idx new file mode 100644 index 0000000..c7be64d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVBoxLayout.7AF4074B70999221.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVariant.2AF6DF306899E262.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVariant.2AF6DF306899E262.idx new file mode 100644 index 0000000..0ac160c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVariant.2AF6DF306899E262.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVector.4616C9BB93D5E03F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVector.4616C9BB93D5E03F.idx new file mode 100644 index 0000000..bca2d3e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVector.4616C9BB93D5E03F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QWidget.B8843477FB23581A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QWidget.B8843477FB23581A.idx new file mode 100644 index 0000000..454ed9d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QWidget.B8843477FB23581A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.0BB4152697063201.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.0BB4152697063201.idx new file mode 100644 index 0000000..9c4dcc5 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.0BB4152697063201.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw.h.9063BC30453243F3.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw.h.9063BC30453243F3.idx new file mode 100644 index 0000000..8a00705 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw.h.9063BC30453243F3.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.570FD4D1B2D32B52.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.570FD4D1B2D32B52.idx new file mode 100644 index 0000000..430c385 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.570FD4D1B2D32B52.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.080D111F344D4537.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.080D111F344D4537.idx new file mode 100644 index 0000000..041a9d3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.080D111F344D4537.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.53E87FB5C0C92D32.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.53E87FB5C0C92D32.idx new file mode 100644 index 0000000..943be97 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.53E87FB5C0C92D32.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.26DB93C57E58A36E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.26DB93C57E58A36E.idx new file mode 100644 index 0000000..07a9861 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.26DB93C57E58A36E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.0CD59C248F52BD72.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.0CD59C248F52BD72.idx new file mode 100644 index 0000000..37a536a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.0CD59C248F52BD72.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_timeval.h.6D8772AD9AE270D6.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_timeval.h.6D8772AD9AE270D6.idx new file mode 100644 index 0000000..2e03fa6 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_timeval.h.6D8772AD9AE270D6.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.B63A1AB804A0418E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.B63A1AB804A0418E.idx new file mode 100644 index 0000000..487f633 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.B63A1AB804A0418E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.B818E34A708CBED6.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.B818E34A708CBED6.idx new file mode 100644 index 0000000..4dbc0bb Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.B818E34A708CBED6.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.4C4EF99306C09C24.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.4C4EF99306C09C24.idx new file mode 100644 index 0000000..df28b72 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.4C4EF99306C09C24.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.91DE6B7F31D201E0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.91DE6B7F31D201E0.idx new file mode 100644 index 0000000..3b76be1 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.91DE6B7F31D201E0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.1FD3C3694528EE54.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.1FD3C3694528EE54.idx new file mode 100644 index 0000000..57a268a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.1FD3C3694528EE54.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.E9BA17BEE07A2BAA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.E9BA17BEE07A2BAA.idx new file mode 100644 index 0000000..7475b1e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.E9BA17BEE07A2BAA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.95627CC6742827C3.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.95627CC6742827C3.idx new file mode 100644 index 0000000..c594c07 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.95627CC6742827C3.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.93BF9A1F82F6688C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.93BF9A1F82F6688C.idx new file mode 100644 index 0000000..f7666d3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.93BF9A1F82F6688C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/array.25E9866757CEF9AF.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/array.25E9866757CEF9AF.idx new file mode 100644 index 0000000..5e84416 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/array.25E9866757CEF9AF.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.849CBFAA20ACB2EF.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.849CBFAA20ACB2EF.idx new file mode 100644 index 0000000..7e2b340 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.849CBFAA20ACB2EF.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.538DFC7564A8C64A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.538DFC7564A8C64A.idx new file mode 100644 index 0000000..b2b0bbc Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.538DFC7564A8C64A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.3D5D6F43342AFCB2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.3D5D6F43342AFCB2.idx new file mode 100644 index 0000000..3b724ae Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.3D5D6F43342AFCB2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.9E887311C28BEF8A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.9E887311C28BEF8A.idx new file mode 100644 index 0000000..a2c2f8b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.9E887311C28BEF8A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.6B04184F5D993264.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.6B04184F5D993264.idx new file mode 100644 index 0000000..869c226 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.6B04184F5D993264.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.862F6C953145A517.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.862F6C953145A517.idx new file mode 100644 index 0000000..7cfb450 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.862F6C953145A517.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.42C1A32322C8EB2F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.42C1A32322C8EB2F.idx new file mode 100644 index 0000000..46815cf Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.42C1A32322C8EB2F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.1589B15250F603E2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.1589B15250F603E2.idx new file mode 100644 index 0000000..a482829 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.1589B15250F603E2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.3EA6F3E3C03CF711.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.3EA6F3E3C03CF711.idx new file mode 100644 index 0000000..df0f3de Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.3EA6F3E3C03CF711.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.4EF75573B7A58625.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.4EF75573B7A58625.idx new file mode 100644 index 0000000..ca2489f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.4EF75573B7A58625.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.F4D1EEEA8259DA3B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.F4D1EEEA8259DA3B.idx new file mode 100644 index 0000000..b0d01b2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.F4D1EEEA8259DA3B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.5B375847E4658250.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.5B375847E4658250.idx new file mode 100644 index 0000000..36b1640 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.5B375847E4658250.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.B49A7B8E474AC3F5.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.B49A7B8E474AC3F5.idx new file mode 100644 index 0000000..2747789 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.B49A7B8E474AC3F5.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bit.FA145B867C105A18.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bit.FA145B867C105A18.idx new file mode 100644 index 0000000..63cc504 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bit.FA145B867C105A18.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.7BC47500EE33DF83.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.7BC47500EE33DF83.idx new file mode 100644 index 0000000..813208d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.7BC47500EE33DF83.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.B085AC53D731EE26.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.B085AC53D731EE26.idx new file mode 100644 index 0000000..fa7dbfd Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.B085AC53D731EE26.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.33CE091015F064AE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.33CE091015F064AE.idx new file mode 100644 index 0000000..ec50f1b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.33CE091015F064AE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.C3800EC1562A5645.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.C3800EC1562A5645.idx new file mode 100644 index 0000000..fa9bc90 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.C3800EC1562A5645.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.8115E69FEB2597E4.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.8115E69FEB2597E4.idx new file mode 100644 index 0000000..6fffbd3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.8115E69FEB2597E4.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.B438352A03EE1153.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.B438352A03EE1153.idx new file mode 100644 index 0000000..23ddc65 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.B438352A03EE1153.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.1ACAF5CE5EA79A5A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.1ACAF5CE5EA79A5A.idx new file mode 100644 index 0000000..68d9229 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.1ACAF5CE5EA79A5A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.AB49B1B7797201CB.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.AB49B1B7797201CB.idx new file mode 100644 index 0000000..d04308e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.AB49B1B7797201CB.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/climits.B7A933E6638EA520.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/climits.B7A933E6638EA520.idx new file mode 100644 index 0000000..70b699f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/climits.B7A933E6638EA520.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.48D2F5BD9B538AAE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.48D2F5BD9B538AAE.idx new file mode 100644 index 0000000..9dfa149 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.48D2F5BD9B538AAE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.A0A08F382EA62983.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.A0A08F382EA62983.idx new file mode 100644 index 0000000..e4f8214 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.A0A08F382EA62983.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.412FA04EC187BA84.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.412FA04EC187BA84.idx new file mode 100644 index 0000000..22a9403 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.412FA04EC187BA84.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.2E032C229A38C6E1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.2E032C229A38C6E1.idx new file mode 100644 index 0000000..c242cd2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.2E032C229A38C6E1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt.h.CF79803002814E3C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt.h.CF79803002814E3C.idx new file mode 100644 index 0000000..5445308 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt.h.CF79803002814E3C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.8C9FE57DD784911C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.8C9FE57DD784911C.idx new file mode 100644 index 0000000..32d826b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.8C9FE57DD784911C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.8E05F7291AC6AE26.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.8E05F7291AC6AE26.idx new file mode 100644 index 0000000..f5b44f3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.8E05F7291AC6AE26.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.2AFF082516D86A01.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.2AFF082516D86A01.idx new file mode 100644 index 0000000..5d2fc51 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.2AFF082516D86A01.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.18CE80C3AA2F2928.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.18CE80C3AA2F2928.idx new file mode 100644 index 0000000..9f08536 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.18CE80C3AA2F2928.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.17425A30C8B0664B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.17425A30C8B0664B.idx new file mode 100644 index 0000000..12206b3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.17425A30C8B0664B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crtdefs.h.51BBD55D5C4996FB.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crtdefs.h.51BBD55D5C4996FB.idx new file mode 100644 index 0000000..de8c00b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crtdefs.h.51BBD55D5C4996FB.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.6685BE0C46EA418C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.6685BE0C46EA418C.idx new file mode 100644 index 0000000..11f0848 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.6685BE0C46EA418C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.6545973F0DAAC1CC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.6545973F0DAAC1CC.idx new file mode 100644 index 0000000..8a76ad6 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.6545973F0DAAC1CC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.B7ED95DE322D94D3.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.B7ED95DE322D94D3.idx new file mode 100644 index 0000000..8f794ae Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.B7ED95DE322D94D3.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.77936E530E4CBA75.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.77936E530E4CBA75.idx new file mode 100644 index 0000000..d1e2a7b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.77936E530E4CBA75.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.E6FEDAD33AD83F79.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.E6FEDAD33AD83F79.idx new file mode 100644 index 0000000..1bdf0f2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.E6FEDAD33AD83F79.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.3B2F9094CD80A030.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.3B2F9094CD80A030.idx new file mode 100644 index 0000000..d3af784 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.3B2F9094CD80A030.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.611A3F47BDEB2D65.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.611A3F47BDEB2D65.idx new file mode 100644 index 0000000..c056363 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.611A3F47BDEB2D65.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.27013598EC683F3C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.27013598EC683F3C.idx new file mode 100644 index 0000000..e0cb30c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.27013598EC683F3C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.E77F2604EB0DAA11.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.E77F2604EB0DAA11.idx new file mode 100644 index 0000000..e39b7a8 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.E77F2604EB0DAA11.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.6F553FB2B0A16EB0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.6F553FB2B0A16EB0.idx new file mode 100644 index 0000000..a52f182 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.6F553FB2B0A16EB0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.3B94537C772B05E1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.3B94537C772B05E1.idx new file mode 100644 index 0000000..1ee0589 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.3B94537C772B05E1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.50F5CBA6850ED7C6.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.50F5CBA6850ED7C6.idx new file mode 100644 index 0000000..fe59431 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.50F5CBA6850ED7C6.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.0EE7AEAFFAA54AB8.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.0EE7AEAFFAA54AB8.idx new file mode 100644 index 0000000..a73f350 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.0EE7AEAFFAA54AB8.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.5ED97EE9FDED5F46.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.5ED97EE9FDED5F46.idx new file mode 100644 index 0000000..d903d40 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.5ED97EE9FDED5F46.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.9CB9214B6A17A893.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.9CB9214B6A17A893.idx new file mode 100644 index 0000000..3c5dd70 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.9CB9214B6A17A893.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.3FDD171936ECCFC3.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.3FDD171936ECCFC3.idx new file mode 100644 index 0000000..948a77d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.3FDD171936ECCFC3.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.6CCD2F6D147520EB.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.6CCD2F6D147520EB.idx new file mode 100644 index 0000000..da1b7bc Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.6CCD2F6D147520EB.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.6347ADACB335B5B2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.6347ADACB335B5B2.idx new file mode 100644 index 0000000..cc7b3b0 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.6347ADACB335B5B2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.6FAB1758E9C4F6FC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.6FAB1758E9C4F6FC.idx new file mode 100644 index 0000000..3aa897c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.6FAB1758E9C4F6FC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.3542983D810679A8.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.3542983D810679A8.idx new file mode 100644 index 0000000..0477d30 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.3542983D810679A8.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.C022BE8934A12FEF.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.C022BE8934A12FEF.idx new file mode 100644 index 0000000..f279d82 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.C022BE8934A12FEF.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.60FCA382E9E1B598.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.60FCA382E9E1B598.idx new file mode 100644 index 0000000..0de3c00 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.60FCA382E9E1B598.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.17A8E88336176AA3.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.17A8E88336176AA3.idx new file mode 100644 index 0000000..6effe62 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.17A8E88336176AA3.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional.54F2E4FEBE22653C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional.54F2E4FEBE22653C.idx new file mode 100644 index 0000000..ef82107 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional.54F2E4FEBE22653C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.C1C97364870BE6F2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.C1C97364870BE6F2.idx new file mode 100644 index 0000000..0e11eac Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.C1C97364870BE6F2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.EC07CEE7A1297F11.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.EC07CEE7A1297F11.idx new file mode 100644 index 0000000..5b55b23 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.EC07CEE7A1297F11.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.2782462FE805E0DE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.2782462FE805E0DE.idx new file mode 100644 index 0000000..1be8bc4 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.2782462FE805E0DE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.70C303086177FE43.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.70C303086177FE43.idx new file mode 100644 index 0000000..22ec956 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.70C303086177FE43.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.5DCAFA9C87700946.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.5DCAFA9C87700946.idx new file mode 100644 index 0000000..ca79674 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.5DCAFA9C87700946.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.B70A0C3097F7041C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.B70A0C3097F7041C.idx new file mode 100644 index 0000000..e6c843b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.B70A0C3097F7041C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.918C1160108EB1DA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.918C1160108EB1DA.idx new file mode 100644 index 0000000..979c80b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.918C1160108EB1DA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.044334B0B76180BD.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.044334B0B76180BD.idx new file mode 100644 index 0000000..f6d4a87 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.044334B0B76180BD.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.2122BA1A87DDCE40.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.2122BA1A87DDCE40.idx new file mode 100644 index 0000000..69303e8 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.2122BA1A87DDCE40.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.721E14586A5D8388.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.721E14586A5D8388.idx new file mode 100644 index 0000000..b0b2a4f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.721E14586A5D8388.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.EEF1326F1BE89202.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.EEF1326F1BE89202.idx new file mode 100644 index 0000000..a6e6afb Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.EEF1326F1BE89202.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.5F11F1A8B9365F6E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.5F11F1A8B9365F6E.idx new file mode 100644 index 0000000..12a6e97 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.5F11F1A8B9365F6E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.DB988924DCB1B33E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.DB988924DCB1B33E.idx new file mode 100644 index 0000000..e49f009 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.DB988924DCB1B33E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.5D8E18D464E980AD.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.5D8E18D464E980AD.idx new file mode 100644 index 0000000..038f68d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.5D8E18D464E980AD.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.A6CAEB762BA80B81.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.A6CAEB762BA80B81.idx new file mode 100644 index 0000000..6ef29af Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.A6CAEB762BA80B81.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.5E36C4D27739EA8A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.5E36C4D27739EA8A.idx new file mode 100644 index 0000000..ee1c042 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.5E36C4D27739EA8A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.7F022B20841CA149.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.7F022B20841CA149.idx new file mode 100644 index 0000000..5924b7c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.7F022B20841CA149.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.ED72BFAE94F0CAA1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.ED72BFAE94F0CAA1.idx new file mode 100644 index 0000000..03bd3fa Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.ED72BFAE94F0CAA1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.38647169D52F47DF.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.38647169D52F47DF.idx new file mode 100644 index 0000000..1885171 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.38647169D52F47DF.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.A7F5A26B01B458C0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.A7F5A26B01B458C0.idx new file mode 100644 index 0000000..a7a06ba Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.A7F5A26B01B458C0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.9F7075085305CCB5.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.9F7075085305CCB5.idx new file mode 100644 index 0000000..f795a0c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.9F7075085305CCB5.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.F065556DD02680CA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.F065556DD02680CA.idx new file mode 100644 index 0000000..4b72bf7 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.F065556DD02680CA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.A50B231BCE4CBACB.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.A50B231BCE4CBACB.idx new file mode 100644 index 0000000..5e8728c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.A50B231BCE4CBACB.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.94E0B5A3D9E31223.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.94E0B5A3D9E31223.idx new file mode 100644 index 0000000..524218b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.94E0B5A3D9E31223.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.14A953226B5DAF1F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.14A953226B5DAF1F.idx new file mode 100644 index 0000000..2501fa8 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.14A953226B5DAF1F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.D670E8AF8022AE56.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.D670E8AF8022AE56.idx new file mode 100644 index 0000000..b471cf2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.D670E8AF8022AE56.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.825EB898DB87FCD0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.825EB898DB87FCD0.idx new file mode 100644 index 0000000..1ee44bd Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.825EB898DB87FCD0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mainwindow.cpp.0665ADDBA6FAA54D.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mainwindow.cpp.0665ADDBA6FAA54D.idx new file mode 100644 index 0000000..6c5cb9e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mainwindow.cpp.0665ADDBA6FAA54D.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mainwindow.h.8403814E71122637.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mainwindow.h.8403814E71122637.idx new file mode 100644 index 0000000..4753b28 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mainwindow.h.8403814E71122637.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/malloc.h.FCB1E249A822903C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/malloc.h.FCB1E249A822903C.idx new file mode 100644 index 0000000..6247bad Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/malloc.h.FCB1E249A822903C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/map.8700A04635D17E47.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/map.8700A04635D17E47.idx new file mode 100644 index 0000000..d68b43c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/map.8700A04635D17E47.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/match.cpp.F3B32B46DD4FDFDC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/match.cpp.F3B32B46DD4FDFDC.idx new file mode 100644 index 0000000..ead968c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/match.cpp.F3B32B46DD4FDFDC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/match.h.149DD944CD3173DD.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/match.h.149DD944CD3173DD.idx new file mode 100644 index 0000000..6e76249 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/match.h.149DD944CD3173DD.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchresult.cpp.AD1EAB13B7E7573E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchresult.cpp.AD1EAB13B7E7573E.idx new file mode 100644 index 0000000..843a0b7 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchresult.cpp.AD1EAB13B7E7573E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchresult.h.6551BDA65A72B5C2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchresult.h.6551BDA65A72B5C2.idx new file mode 100644 index 0000000..6521f04 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchresult.h.6551BDA65A72B5C2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchschedule.cpp.A110FA0A5C673387.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchschedule.cpp.A110FA0A5C673387.idx new file mode 100644 index 0000000..bf38a42 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchschedule.cpp.A110FA0A5C673387.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchschedule.h.87E68915AE0B0991.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchschedule.h.87E68915AE0B0991.idx new file mode 100644 index 0000000..061e259 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchschedule.h.87E68915AE0B0991.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchui.cpp.E296B413A6582396.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchui.cpp.E296B413A6582396.idx new file mode 100644 index 0000000..79e36ca Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchui.cpp.E296B413A6582396.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchui.h.E34595006E1905B8.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchui.h.E34595006E1905B8.idx new file mode 100644 index 0000000..0a11a03 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/matchui.h.E34595006E1905B8.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.D3FDF466545391C1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.D3FDF466545391C1.idx new file mode 100644 index 0000000..cf381c4 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.D3FDF466545391C1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory.64A021376A3B0C13.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory.64A021376A3B0C13.idx new file mode 100644 index 0000000..637df49 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory.64A021376A3B0C13.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.F7C4CE916424A343.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.F7C4CE916424A343.idx new file mode 100644 index 0000000..2ad9c45 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.F7C4CE916424A343.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mm_malloc.h.2A3CF15AD9463349.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mm_malloc.h.2A3CF15AD9463349.idx new file mode 100644 index 0000000..04dfe6d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mm_malloc.h.2A3CF15AD9463349.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.BBD76B1C161D6214.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.BBD76B1C161D6214.idx new file mode 100644 index 0000000..37ba27f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.BBD76B1C161D6214.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.8A42797221F44408.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.8A42797221F44408.idx new file mode 100644 index 0000000..ae5f554 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.8A42797221F44408.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.04645FA1191819F2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.04645FA1191819F2.idx new file mode 100644 index 0000000..2b80281 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.04645FA1191819F2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new.A8D5623A48B0AEF0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new.A8D5623A48B0AEF0.idx new file mode 100644 index 0000000..7d9b21a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new.A8D5623A48B0AEF0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.03D78830EF7AA0B0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.03D78830EF7AA0B0.idx new file mode 100644 index 0000000..82fa404 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.03D78830EF7AA0B0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.745CD093144EBD43.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.745CD093144EBD43.idx new file mode 100644 index 0000000..28bb095 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.745CD093144EBD43.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.D1D20A2639EF01AE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.D1D20A2639EF01AE.idx new file mode 100644 index 0000000..41f434d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.D1D20A2639EF01AE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.26AEAFDBE52E59FB.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.26AEAFDBE52E59FB.idx new file mode 100644 index 0000000..37ac63f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.26AEAFDBE52E59FB.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/optional.38EBC242B4B3B6A4.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/optional.38EBC242B4B3B6A4.idx new file mode 100644 index 0000000..7d44a0e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/optional.38EBC242B4B3B6A4.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.231BACF2B6B32144.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.231BACF2B6B32144.idx new file mode 100644 index 0000000..0e432eb Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.231BACF2B6B32144.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.8C311B0603DA2182.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.8C311B0603DA2182.idx new file mode 100644 index 0000000..6017b48 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.8C311B0603DA2182.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.FE137A42D4C9EF4B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.FE137A42D4C9EF4B.idx new file mode 100644 index 0000000..f739ca2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.FE137A42D4C9EF4B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/player.cpp.7C09F89AA0D2CE35.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/player.cpp.7C09F89AA0D2CE35.idx new file mode 100644 index 0000000..a58c5d9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/player.cpp.7C09F89AA0D2CE35.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/player.h.E9A162D5344F1B26.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/player.h.E9A162D5344F1B26.idx new file mode 100644 index 0000000..f0f3de5 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/player.h.E9A162D5344F1B26.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/playerbox.cpp.D88AAB6DCEB72507.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/playerbox.cpp.D88AAB6DCEB72507.idx new file mode 100644 index 0000000..c17b84d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/playerbox.cpp.D88AAB6DCEB72507.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/playerbox.h.B7B81529C8A2B164.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/playerbox.h.B7B81529C8A2B164.idx new file mode 100644 index 0000000..490c4de Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/playerbox.h.B7B81529C8A2B164.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.754C21845C92A640.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.754C21845C92A640.idx new file mode 100644 index 0000000..a0f2599 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.754C21845C92A640.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.A7C7C079797F3D4A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.A7C7C079797F3D4A.idx new file mode 100644 index 0000000..196ce93 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.A7C7C079797F3D4A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.14EE9B3E8530EE71.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.14EE9B3E8530EE71.idx new file mode 100644 index 0000000..6b68d70 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.14EE9B3E8530EE71.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.4A8594C536F6C091.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.4A8594C536F6C091.idx new file mode 100644 index 0000000..e49c3c9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.4A8594C536F6C091.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/process.h.548655B1B24C8632.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/process.h.548655B1B24C8632.idx new file mode 100644 index 0000000..111ea24 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/process.h.548655B1B24C8632.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.618EC91951039E1E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.618EC91951039E1E.idx new file mode 100644 index 0000000..88f17b3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.618EC91951039E1E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.6E22B1265CAC4982.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.6E22B1265CAC4982.idx new file mode 100644 index 0000000..8ae1f09 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.6E22B1265CAC4982.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_compat.h.D4DFA7CAFDC214F1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_compat.h.D4DFA7CAFDC214F1.idx new file mode 100644 index 0000000..86f01c0 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_compat.h.D4DFA7CAFDC214F1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_signal.h.BA858CD111F13891.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_signal.h.BA858CD111F13891.idx new file mode 100644 index 0000000..12ba37d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_signal.h.BA858CD111F13891.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_time.h.1582937A482E3241.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_time.h.1582937A482E3241.idx new file mode 100644 index 0000000..ec135f4 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_time.h.1582937A482E3241.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.99BBA73226EB5CA4.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.99BBA73226EB5CA4.idx new file mode 100644 index 0000000..2ac2969 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.99BBA73226EB5CA4.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.DD6BE8AE72BE105A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.DD6BE8AE72BE105A.idx new file mode 100644 index 0000000..716a10c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.DD6BE8AE72BE105A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20functional.h.89327282CF027B1A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20functional.h.89327282CF027B1A.idx new file mode 100644 index 0000000..2be3c5e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20functional.h.89327282CF027B1A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.FA523501A7A52C40.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.FA523501A7A52C40.idx new file mode 100644 index 0000000..1cc4ec3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.FA523501A7A52C40.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.4585BB65CDE4A5AA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.4585BB65CDE4A5AA.idx new file mode 100644 index 0000000..8bdf5ce Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.4585BB65CDE4A5AA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23utility.h.21D9928A0228621E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23utility.h.21D9928A0228621E.idx new file mode 100644 index 0000000..b125ef2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23utility.h.21D9928A0228621E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractbutton.h.383B97A398F84C21.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractbutton.h.383B97A398F84C21.idx new file mode 100644 index 0000000..cdc7ff2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractbutton.h.383B97A398F84C21.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemdelegate.h.A1286B8C2A05A6D4.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemdelegate.h.A1286B8C2A05A6D4.idx new file mode 100644 index 0000000..31b59ac Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemdelegate.h.A1286B8C2A05A6D4.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemmodel.h.CE84EDA91A831DCE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemmodel.h.CE84EDA91A831DCE.idx new file mode 100644 index 0000000..a3aa6bd Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemmodel.h.CE84EDA91A831DCE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemview.h.B94CDDCD6872F4C5.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemview.h.B94CDDCD6872F4C5.idx new file mode 100644 index 0000000..af057bb Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemview.h.B94CDDCD6872F4C5.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractscrollarea.h.8BA6A2F9ECF40909.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractscrollarea.h.8BA6A2F9ECF40909.idx new file mode 100644 index 0000000..09f896d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractscrollarea.h.8BA6A2F9ECF40909.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractslider.h.A74D4D270ED96D69.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractslider.h.A74D4D270ED96D69.idx new file mode 100644 index 0000000..f90ad1c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractslider.h.A74D4D270ED96D69.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractspinbox.h.816434B6DA6CCCC8.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractspinbox.h.816434B6DA6CCCC8.idx new file mode 100644 index 0000000..89bf6f2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractspinbox.h.816434B6DA6CCCC8.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaction.h.B6F1E0A0474603C7.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaction.h.B6F1E0A0474603C7.idx new file mode 100644 index 0000000..8e808b3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaction.h.B6F1E0A0474603C7.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.0D2D30A9D57D4AC0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.0D2D30A9D57D4AC0.idx new file mode 100644 index 0000000..47e761c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.0D2D30A9D57D4AC0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.C5ADD7D0A302386A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.C5ADD7D0A302386A.idx new file mode 100644 index 0000000..c1b4390 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.C5ADD7D0A302386A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplication.h.DF0D9C97644A302C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplication.h.DF0D9C97644A302C.idx new file mode 100644 index 0000000..bab83b3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplication.h.DF0D9C97644A302C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.CD182F92313E5C27.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.CD182F92313E5C27.idx new file mode 100644 index 0000000..d874d4b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.CD182F92313E5C27.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.AE67E11C1F7DCA6F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.AE67E11C1F7DCA6F.idx new file mode 100644 index 0000000..5465944 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.AE67E11C1F7DCA6F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.7933F64C291ABBAF.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.7933F64C291ABBAF.idx new file mode 100644 index 0000000..589a691 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.7933F64C291ABBAF.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.1CCFB035D538AF1A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.1CCFB035D538AF1A.idx new file mode 100644 index 0000000..ed848fc Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.1CCFB035D538AF1A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.C01F1F8BD672FC7C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.C01F1F8BD672FC7C.idx new file mode 100644 index 0000000..f063938 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.C01F1F8BD672FC7C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.41FD5BDAD26035B7.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.41FD5BDAD26035B7.idx new file mode 100644 index 0000000..5304c0b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.41FD5BDAD26035B7.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.F17A16925AF73FCD.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.F17A16925AF73FCD.idx new file mode 100644 index 0000000..6cb1398 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.F17A16925AF73FCD.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.EE1DD050F3B8725F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.EE1DD050F3B8725F.idx new file mode 100644 index 0000000..90c42c2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.EE1DD050F3B8725F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitmap.h.5099467F36F3EB1A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitmap.h.5099467F36F3EB1A.idx new file mode 100644 index 0000000..c342de9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitmap.h.5099467F36F3EB1A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qboxlayout.h.B8DF24726AA4489F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qboxlayout.h.B8DF24726AA4489F.idx new file mode 100644 index 0000000..b0c21d2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qboxlayout.h.B8DF24726AA4489F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbrush.h.D045196AC9D789BE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbrush.h.D045196AC9D789BE.idx new file mode 100644 index 0000000..6269844 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbrush.h.D045196AC9D789BE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.56C88ADB6E7012EB.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.56C88ADB6E7012EB.idx new file mode 100644 index 0000000..c96be14 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.56C88ADB6E7012EB.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.71D252261496603B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.71D252261496603B.idx new file mode 100644 index 0000000..618a9f4 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.71D252261496603B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.CC5AB1B14A1E08E2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.CC5AB1B14A1E08E2.idx new file mode 100644 index 0000000..6a30324 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.CC5AB1B14A1E08E2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.5F5C06B63F613971.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.5F5C06B63F613971.idx new file mode 100644 index 0000000..edf9cf0 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.5F5C06B63F613971.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.B62273B308906A80.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.B62273B308906A80.idx new file mode 100644 index 0000000..25ed490 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.B62273B308906A80.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.C2393B29C1E421BD.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.C2393B29C1E421BD.idx new file mode 100644 index 0000000..9f727fb Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.C2393B29C1E421BD.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcolor.h.F0EB99CEA0891968.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcolor.h.F0EB99CEA0891968.idx new file mode 100644 index 0000000..4f25389 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcolor.h.F0EB99CEA0891968.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.09A054808C6894C1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.09A054808C6894C1.idx new file mode 100644 index 0000000..7e01af4 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.09A054808C6894C1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.4CCA886CC8DDA2A8.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.4CCA886CC8DDA2A8.idx new file mode 100644 index 0000000..1fca8c6 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.4CCA886CC8DDA2A8.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.1640C0D457E4118A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.1640C0D457E4118A.idx new file mode 100644 index 0000000..1b1723d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.1640C0D457E4118A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.EA80F9B9D256821F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.EA80F9B9D256821F.idx new file mode 100644 index 0000000..bed0a1e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.EA80F9B9D256821F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.5DC25364486DBD94.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.5DC25364486DBD94.idx new file mode 100644 index 0000000..f56fbf9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.5DC25364486DBD94.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.396BA122131A2F38.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.396BA122131A2F38.idx new file mode 100644 index 0000000..10ee917 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.396BA122131A2F38.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.CE5B0668DB2EE8A4.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.CE5B0668DB2EE8A4.idx new file mode 100644 index 0000000..fda26d1 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.CE5B0668DB2EE8A4.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.6E01355F0494DA0C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.6E01355F0494DA0C.idx new file mode 100644 index 0000000..87d2ea8 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.6E01355F0494DA0C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.8BB6392C26D77C76.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.8BB6392C26D77C76.idx new file mode 100644 index 0000000..0133515 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.8BB6392C26D77C76.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.2F26C3972572A9FF.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.2F26C3972572A9FF.idx new file mode 100644 index 0000000..3ece20d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.2F26C3972572A9FF.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.59F2ACD7003D5565.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.59F2ACD7003D5565.idx new file mode 100644 index 0000000..8232ce9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.59F2ACD7003D5565.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.1BB868ED586BE370.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.1BB868ED586BE370.idx new file mode 100644 index 0000000..e22ab48 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.1BB868ED586BE370.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.E90F9B220876297F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.E90F9B220876297F.idx new file mode 100644 index 0000000..0857010 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.E90F9B220876297F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcursor.h.FE8CFC6BCFF856B1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcursor.h.FE8CFC6BCFF856B1.idx new file mode 100644 index 0000000..7b441a4 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcursor.h.FE8CFC6BCFF856B1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.12CD61A7EFD76C2B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.12CD61A7EFD76C2B.idx new file mode 100644 index 0000000..30f2748 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.12CD61A7EFD76C2B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.054BFDDE9EC46C78.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.054BFDDE9EC46C78.idx new file mode 100644 index 0000000..2e79305 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.054BFDDE9EC46C78.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.1A9043887FF82F73.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.1A9043887FF82F73.idx new file mode 100644 index 0000000..56e191e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.1A9043887FF82F73.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetimeedit.h.8FCEBA9410EFCD70.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetimeedit.h.8FCEBA9410EFCD70.idx new file mode 100644 index 0000000..8cae47c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetimeedit.h.8FCEBA9410EFCD70.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.436E0AF0CE424C3F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.436E0AF0CE424C3F.idx new file mode 100644 index 0000000..b561191 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.436E0AF0CE424C3F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.068E12CEE86F5E9E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.068E12CEE86F5E9E.idx new file mode 100644 index 0000000..e7734f5 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.068E12CEE86F5E9E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.7631ADC090AD9A5A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.7631ADC090AD9A5A.idx new file mode 100644 index 0000000..c894715 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.7631ADC090AD9A5A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qendian.h.AC6D79534F4919D6.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qendian.h.AC6D79534F4919D6.idx new file mode 100644 index 0000000..ab2abec Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qendian.h.AC6D79534F4919D6.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.89D670B7F98410AC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.89D670B7F98410AC.idx new file mode 100644 index 0000000..6512c6d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.89D670B7F98410AC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.E85A68D33E57D324.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.E85A68D33E57D324.idx new file mode 100644 index 0000000..3d9dec2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.E85A68D33E57D324.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.2506DBD12A63574D.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.2506DBD12A63574D.idx new file mode 100644 index 0000000..19779e2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.2506DBD12A63574D.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.AECF37234C34B43A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.AECF37234C34B43A.idx new file mode 100644 index 0000000..dc18032 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.AECF37234C34B43A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfont.h.FAD870EEF9C43DDC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfont.h.FAD870EEF9C43DDC.idx new file mode 100644 index 0000000..a1af50d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfont.h.FAD870EEF9C43DDC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontinfo.h.0A9EFF7031C118D7.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontinfo.h.0A9EFF7031C118D7.idx new file mode 100644 index 0000000..db91a92 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontinfo.h.0A9EFF7031C118D7.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.5BF2952B9A67F420.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.5BF2952B9A67F420.idx new file mode 100644 index 0000000..240f297 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.5BF2952B9A67F420.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.08549D89D79E76BF.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.08549D89D79E76BF.idx new file mode 100644 index 0000000..876a58e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.08549D89D79E76BF.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qframe.h.5FA4598DDA7E0583.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qframe.h.5FA4598DDA7E0583.idx new file mode 100644 index 0000000..d189abe Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qframe.h.5FA4598DDA7E0583.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.99A892B949826745.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.99A892B949826745.idx new file mode 100644 index 0000000..0e2294c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.99A892B949826745.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.89DDE8A994754290.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.89DDE8A994754290.idx new file mode 100644 index 0000000..c546c60 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.89DDE8A994754290.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.91018553AFC6A107.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.91018553AFC6A107.idx new file mode 100644 index 0000000..12c7534 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.91018553AFC6A107.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.F27CE9CB9A9292F3.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.F27CE9CB9A9292F3.idx new file mode 100644 index 0000000..573ab7f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.F27CE9CB9A9292F3.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.3841FFFA5AA9716B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.3841FFFA5AA9716B.idx new file mode 100644 index 0000000..5f678d6 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.3841FFFA5AA9716B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgridlayout.h.27C92D606052558B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgridlayout.h.27C92D606052558B.idx new file mode 100644 index 0000000..91aae37 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgridlayout.h.27C92D606052558B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication.h.9BE975A31DEED6CB.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication.h.9BE975A31DEED6CB.idx new file mode 100644 index 0000000..e93ed79 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication.h.9BE975A31DEED6CB.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.861508C13FA2F4E1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.861508C13FA2F4E1.idx new file mode 100644 index 0000000..33e65f0 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.861508C13FA2F4E1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.A2876E6711AFF078.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.A2876E6711AFF078.idx new file mode 100644 index 0000000..0235c9e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.A2876E6711AFF078.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.77288E326B650F65.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.77288E326B650F65.idx new file mode 100644 index 0000000..53ba2cc Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.77288E326B650F65.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qicon.h.4B44A25CEE723F2A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qicon.h.4B44A25CEE723F2A.idx new file mode 100644 index 0000000..2394bbc Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qicon.h.4B44A25CEE723F2A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qimage.h.41BE6ADFAFC76074.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qimage.h.41BE6ADFAFC76074.idx new file mode 100644 index 0000000..12086ca Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qimage.h.41BE6ADFAFC76074.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputmethod.h.B584203D23D03AA1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputmethod.h.B584203D23D03AA1.idx new file mode 100644 index 0000000..47b983e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputmethod.h.B584203D23D03AA1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevice.h.39BBDA0A83D9A459.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevice.h.39BBDA0A83D9A459.idx new file mode 100644 index 0000000..3b82ccf Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevice.h.39BBDA0A83D9A459.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.102E252EEE81CA0B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.102E252EEE81CA0B.idx new file mode 100644 index 0000000..a984aef Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.102E252EEE81CA0B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qitemselectionmodel.h.940A2DDA6161187E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qitemselectionmodel.h.940A2DDA6161187E.idx new file mode 100644 index 0000000..49d8f49 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qitemselectionmodel.h.940A2DDA6161187E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.38E805882C3CB429.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.38E805882C3CB429.idx new file mode 100644 index 0000000..74b9781 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.38E805882C3CB429.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.8E9FF05C252806DA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.8E9FF05C252806DA.idx new file mode 100644 index 0000000..0bc8a19 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.8E9FF05C252806DA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qkeysequence.h.77D14D6F2751F201.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qkeysequence.h.77D14D6F2751F201.idx new file mode 100644 index 0000000..b84fc46 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qkeysequence.h.77D14D6F2751F201.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlabel.h.64454E0FAF1420B7.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlabel.h.64454E0FAF1420B7.idx new file mode 100644 index 0000000..af7961c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlabel.h.64454E0FAF1420B7.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.770CB74E34DC3E39.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.770CB74E34DC3E39.idx new file mode 100644 index 0000000..07ef456 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.770CB74E34DC3E39.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlayout.h.9804CF7E1E7852A0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlayout.h.9804CF7E1E7852A0.idx new file mode 100644 index 0000000..6ef133c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlayout.h.9804CF7E1E7852A0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlayoutitem.h.4A7002AE844E47A4.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlayoutitem.h.4A7002AE844E47A4.idx new file mode 100644 index 0000000..afe233f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlayoutitem.h.4A7002AE844E47A4.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qline.h.8D36701E1123B7C1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qline.h.8D36701E1123B7C1.idx new file mode 100644 index 0000000..ff1c393 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qline.h.8D36701E1123B7C1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlineedit.h.2F5940F266C149C5.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlineedit.h.2F5940F266C149C5.idx new file mode 100644 index 0000000..fa000a7 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlineedit.h.2F5940F266C149C5.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.0C5126D655D51A7C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.0C5126D655D51A7C.idx new file mode 100644 index 0000000..257eae2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.0C5126D655D51A7C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlistview.h.D57A09D2624BB09F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlistview.h.D57A09D2624BB09F.idx new file mode 100644 index 0000000..556e24a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlistview.h.D57A09D2624BB09F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlistwidget.h.619B2E33AB6EF1B0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlistwidget.h.619B2E33AB6EF1B0.idx new file mode 100644 index 0000000..b3211ab Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlistwidget.h.619B2E33AB6EF1B0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.BC2BC59A3034EC6C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.BC2BC59A3034EC6C.idx new file mode 100644 index 0000000..7b6718a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.BC2BC59A3034EC6C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.CE497F2E9D8FB0DF.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.CE497F2E9D8FB0DF.idx new file mode 100644 index 0000000..5c09b94 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.CE497F2E9D8FB0DF.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmainwindow.h.29D09BB0136416AA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmainwindow.h.29D09BB0136416AA.idx new file mode 100644 index 0000000..418b37d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmainwindow.h.29D09BB0136416AA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.036A8539E8208C11.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.036A8539E8208C11.idx new file mode 100644 index 0000000..a0d6f87 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.036A8539E8208C11.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.EF8BADB8440607FC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.EF8BADB8440607FC.idx new file mode 100644 index 0000000..4add10b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.EF8BADB8440607FC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmargins.h.F6C62089F75C0A68.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmargins.h.F6C62089F75C0A68.idx new file mode 100644 index 0000000..cb98529 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmargins.h.F6C62089F75C0A68.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.00E224CB23C4EE27.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.00E224CB23C4EE27.idx new file mode 100644 index 0000000..cde8055 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.00E224CB23C4EE27.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmenu.h.BB9A084608E8C4DD.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmenu.h.BB9A084608E8C4DD.idx new file mode 100644 index 0000000..3ed988c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmenu.h.BB9A084608E8C4DD.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmenubar.h.09DEBF397CF31681.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmenubar.h.09DEBF397CF31681.idx new file mode 100644 index 0000000..08e94b5 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmenubar.h.09DEBF397CF31681.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.F433270C4E5DC742.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.F433270C4E5DC742.idx new file mode 100644 index 0000000..46ec1fb Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.F433270C4E5DC742.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.1E2A4D6E421B3BF0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.1E2A4D6E421B3BF0.idx new file mode 100644 index 0000000..db9297a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.1E2A4D6E421B3BF0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.F910C984F4BA25AE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.F910C984F4BA25AE.idx new file mode 100644 index 0000000..368c8a5 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.F910C984F4BA25AE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.262E400F83E91C6B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.262E400F83E91C6B.idx new file mode 100644 index 0000000..5fcbdaa Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.262E400F83E91C6B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.26F24E1C3B2A7853.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.26F24E1C3B2A7853.idx new file mode 100644 index 0000000..d709a33 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.26F24E1C3B2A7853.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.9B32DA7CA15077F4.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.9B32DA7CA15077F4.idx new file mode 100644 index 0000000..526da9e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.9B32DA7CA15077F4.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.3D4343F96E6704BC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.3D4343F96E6704BC.idx new file mode 100644 index 0000000..29c9701 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.3D4343F96E6704BC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.E2B8D32939641D89.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.E2B8D32939641D89.idx new file mode 100644 index 0000000..e4211ed Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.E2B8D32939641D89.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.52552309B4975986.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.52552309B4975986.idx new file mode 100644 index 0000000..85bf334 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.52552309B4975986.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.539913EE932D2742.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.539913EE932D2742.idx new file mode 100644 index 0000000..5230e48 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.539913EE932D2742.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.FA518239CF592FEF.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.FA518239CF592FEF.idx new file mode 100644 index 0000000..27bfbf8 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.FA518239CF592FEF.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.F05D6F5EEDD3B77D.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.F05D6F5EEDD3B77D.idx new file mode 100644 index 0000000..86e4a56 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.F05D6F5EEDD3B77D.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.4763F86B13E12D3F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.4763F86B13E12D3F.idx new file mode 100644 index 0000000..a6c9fa8 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.4763F86B13E12D3F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.CFEA34BE01E60CE0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.CFEA34BE01E60CE0.idx new file mode 100644 index 0000000..d98e73b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.CFEA34BE01E60CE0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpalette.h.0FD81360D3E771C7.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpalette.h.0FD81360D3E771C7.idx new file mode 100644 index 0000000..a758996 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpalette.h.0FD81360D3E771C7.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpen.h.57499374BAC09BFF.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpen.h.57499374BAC09BFF.idx new file mode 100644 index 0000000..4574a34 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpen.h.57499374BAC09BFF.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpicture.h.35C995B1F6B45B3A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpicture.h.35C995B1F6B45B3A.idx new file mode 100644 index 0000000..1e50fc1 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpicture.h.35C995B1F6B45B3A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixelformat.h.EFBAC8DA2FE12F7F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixelformat.h.EFBAC8DA2FE12F7F.idx new file mode 100644 index 0000000..6d0eae0 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixelformat.h.EFBAC8DA2FE12F7F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixmap.h.6B1ADAD8F1EEE425.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixmap.h.6B1ADAD8F1EEE425.idx new file mode 100644 index 0000000..16e2120 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixmap.h.6B1ADAD8F1EEE425.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpoint.h.FB93B501767C4CF0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpoint.h.FB93B501767C4CF0.idx new file mode 100644 index 0000000..8e600e1 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpoint.h.FB93B501767C4CF0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpolygon.h.79DA96E5296B0CA7.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpolygon.h.79DA96E5296B0CA7.idx new file mode 100644 index 0000000..4b9b959 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpolygon.h.79DA96E5296B0CA7.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.5203ACF7E9F25A64.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.5203ACF7E9F25A64.idx new file mode 100644 index 0000000..1383aad Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.5203ACF7E9F25A64.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpushbutton.h.7DF4C0E933EF3058.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpushbutton.h.7DF4C0E933EF3058.idx new file mode 100644 index 0000000..6c0c00f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpushbutton.h.7DF4C0E933EF3058.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrect.h.B6587937EEF79B88.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrect.h.B6587937EEF79B88.idx new file mode 100644 index 0000000..d674374 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrect.h.B6587937EEF79B88.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.A50991DFB22C9344.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.A50991DFB22C9344.idx new file mode 100644 index 0000000..e8e933c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.A50991DFB22C9344.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregion.h.8DAC95EAC907251C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregion.h.8DAC95EAC907251C.idx new file mode 100644 index 0000000..07a9500 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregion.h.8DAC95EAC907251C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregularexpression.h.17A6D536EF8823CA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregularexpression.h.17A6D536EF8823CA.idx new file mode 100644 index 0000000..f2d6f41 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregularexpression.h.17A6D536EF8823CA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgb.h.40490289E9BB7A01.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgb.h.40490289E9BB7A01.idx new file mode 100644 index 0000000..0269387 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgb.h.40490289E9BB7A01.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgba64.h.B6E2673B346E60DC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgba64.h.B6E2673B346E60DC.idx new file mode 100644 index 0000000..72ff30f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgba64.h.B6E2673B346E60DC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrubberband.h.B4668668677AC106.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrubberband.h.B4668668677AC106.idx new file mode 100644 index 0000000..01a934b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrubberband.h.B4668668677AC106.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.BC374DF7833213A8.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.BC374DF7833213A8.idx new file mode 100644 index 0000000..4aca7fc Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.BC374DF7833213A8.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.C33CF9E35441210C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.C33CF9E35441210C.idx new file mode 100644 index 0000000..ee251be Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.C33CF9E35441210C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.258F0704BFFDB200.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.258F0704BFFDB200.idx new file mode 100644 index 0000000..94128c0 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.258F0704BFFDB200.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.736766C637CD0888.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.736766C637CD0888.idx new file mode 100644 index 0000000..e80552a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.736766C637CD0888.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.418FE7D33F13A1D8.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.418FE7D33F13A1D8.idx new file mode 100644 index 0000000..dbc7af3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.418FE7D33F13A1D8.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.384C2383EE308CAD.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.384C2383EE308CAD.idx new file mode 100644 index 0000000..380a6d5 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.384C2383EE308CAD.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.6E44B0D2F0A7D1A1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.6E44B0D2F0A7D1A1.idx new file mode 100644 index 0000000..9db98a4 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.6E44B0D2F0A7D1A1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsignalmapper.h.D0F8F51125258245.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsignalmapper.h.D0F8F51125258245.idx new file mode 100644 index 0000000..ccec63c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsignalmapper.h.D0F8F51125258245.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsize.h.7C0B0BDCC0676D67.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsize.h.7C0B0BDCC0676D67.idx new file mode 100644 index 0000000..e1be58f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsize.h.7C0B0BDCC0676D67.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.97651707FD7C5EB8.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.97651707FD7C5EB8.idx new file mode 100644 index 0000000..ae3c516 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.97651707FD7C5EB8.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qslider.h.DE3D8FBDBD643424.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qslider.h.DE3D8FBDBD643424.idx new file mode 100644 index 0000000..70b64f1 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qslider.h.DE3D8FBDBD643424.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qspinbox.h.C13CE9FABE55E929.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qspinbox.h.C13CE9FABE55E929.idx new file mode 100644 index 0000000..595513f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qspinbox.h.C13CE9FABE55E929.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsplitter.h.68132FAF2A88BA29.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsplitter.h.68132FAF2A88BA29.idx new file mode 100644 index 0000000..12a4cc3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsplitter.h.68132FAF2A88BA29.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstatusbar.h.EE585AA149E91E42.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstatusbar.h.EE585AA149E91E42.idx new file mode 100644 index 0000000..372fbe2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstatusbar.h.EE585AA149E91E42.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.35A719B620B74F31.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.35A719B620B74F31.idx new file mode 100644 index 0000000..b2055bb Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.35A719B620B74F31.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.22D71BD5003CA027.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.22D71BD5003CA027.idx new file mode 100644 index 0000000..90cd2d9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.22D71BD5003CA027.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.ED3134CA1C078340.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.ED3134CA1C078340.idx new file mode 100644 index 0000000..1dcb064 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.ED3134CA1C078340.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter.h.0D14418BD0D781B8.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter.h.0D14418BD0D781B8.idx new file mode 100644 index 0000000..3b5a80c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter.h.0D14418BD0D781B8.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.A072DB165DB261A2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.A072DB165DB261A2.idx new file mode 100644 index 0000000..43183eb Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.A072DB165DB261A2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.352495528BC28604.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.352495528BC28604.idx new file mode 100644 index 0000000..41603e9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.352495528BC28604.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.A82386732FC637FB.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.A82386732FC637FB.idx new file mode 100644 index 0000000..26fa593 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.A82386732FC637FB.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.F974D007AB16AAA2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.F974D007AB16AAA2.idx new file mode 100644 index 0000000..387eba9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.F974D007AB16AAA2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.B7A36FDEEACB13EE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.B7A36FDEEACB13EE.idx new file mode 100644 index 0000000..c23d13e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.B7A36FDEEACB13EE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.E2CA10CFE1538E36.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.E2CA10CFE1538E36.idx new file mode 100644 index 0000000..86c7950 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.E2CA10CFE1538E36.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.ABF61216BDF598F4.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.ABF61216BDF598F4.idx new file mode 100644 index 0000000..1c55b84 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.ABF61216BDF598F4.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyle.h.1E43DC60EF8D28F2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyle.h.1E43DC60EF8D28F2.idx new file mode 100644 index 0000000..b212060 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyle.h.1E43DC60EF8D28F2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyleoption.h.3433B21E3561D16A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyleoption.h.3433B21E3561D16A.idx new file mode 100644 index 0000000..967b860 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyleoption.h.3433B21E3561D16A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.571D9F8BA638418B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.571D9F8BA638418B.idx new file mode 100644 index 0000000..4a30302 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.571D9F8BA638418B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.390B2CF6FA7F1043.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.390B2CF6FA7F1043.idx new file mode 100644 index 0000000..2ad1bda Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.390B2CF6FA7F1043.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.66B7CE68EBF47630.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.66B7CE68EBF47630.idx new file mode 100644 index 0000000..95404d3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.66B7CE68EBF47630.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabbar.h.986EC813C29F231E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabbar.h.986EC813C29F231E.idx new file mode 100644 index 0000000..8c6064b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabbar.h.986EC813C29F231E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabwidget.h.C5AFCAD4A92267C7.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabwidget.h.C5AFCAD4A92267C7.idx new file mode 100644 index 0000000..6858db9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabwidget.h.C5AFCAD4A92267C7.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.03D4DF530B25F5B6.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.03D4DF530B25F5B6.idx new file mode 100644 index 0000000..b4b5b77 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.03D4DF530B25F5B6.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.ED338A77DFF3CAE7.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.ED338A77DFF3CAE7.idx new file mode 100644 index 0000000..c9d7cd9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.ED338A77DFF3CAE7.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.3E2A6DB96F40AB33.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.3E2A6DB96F40AB33.idx new file mode 100644 index 0000000..9aeac14 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.3E2A6DB96F40AB33.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.B0A98196CE8A498A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.B0A98196CE8A498A.idx new file mode 100644 index 0000000..3ce0ab4 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.B0A98196CE8A498A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.E1BF6C0ACFA20DF6.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.E1BF6C0ACFA20DF6.idx new file mode 100644 index 0000000..29757cd Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.E1BF6C0ACFA20DF6.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.5EA1A5F1465E7D18.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.5EA1A5F1465E7D18.idx new file mode 100644 index 0000000..9dc545c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.5EA1A5F1465E7D18.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.DB4A4D973315C436.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.DB4A4D973315C436.idx new file mode 100644 index 0000000..3f7c122 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.DB4A4D973315C436.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.63DBE9A9388849FF.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.63DBE9A9388849FF.idx new file mode 100644 index 0000000..07b2ff2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.63DBE9A9388849FF.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextcursor.h.B7088AF623795250.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextcursor.h.B7088AF623795250.idx new file mode 100644 index 0000000..75e3e54 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextcursor.h.B7088AF623795250.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextdocument.h.D25F9F0CBC713980.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextdocument.h.D25F9F0CBC713980.idx new file mode 100644 index 0000000..8967d71 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextdocument.h.D25F9F0CBC713980.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextformat.h.0B516B38B98479F6.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextformat.h.0B516B38B98479F6.idx new file mode 100644 index 0000000..67cdca9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextformat.h.0B516B38B98479F6.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextoption.h.D72DE1F8D50CF5C6.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextoption.h.D72DE1F8D50CF5C6.idx new file mode 100644 index 0000000..1545dda Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextoption.h.D72DE1F8D50CF5C6.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.45562C42956B5749.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.45562C42956B5749.idx new file mode 100644 index 0000000..f774ebd Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.45562C42956B5749.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtgui-config.h.8B7017716897D497.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtgui-config.h.8B7017716897D497.idx new file mode 100644 index 0000000..c0c34f2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtgui-config.h.8B7017716897D497.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiexports.h.03C60F4A4D314F50.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiexports.h.03C60F4A4D314F50.idx new file mode 100644 index 0000000..de54a23 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiexports.h.03C60F4A4D314F50.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.89F98129AAA6DF6D.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.89F98129AAA6DF6D.idx new file mode 100644 index 0000000..21408d4 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.89F98129AAA6DF6D.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimezone.h.FC83859A6196DA42.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimezone.h.FC83859A6196DA42.idx new file mode 100644 index 0000000..5e329dc Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimezone.h.FC83859A6196DA42.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.0665FB5E331A6DB8.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.0665FB5E331A6DB8.idx new file mode 100644 index 0000000..c488315 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.0665FB5E331A6DB8.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.24D88782F9160B1F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.24D88782F9160B1F.idx new file mode 100644 index 0000000..82f339a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.24D88782F9160B1F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtoolbar.h.9D81B7BE7E3CA747.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtoolbar.h.9D81B7BE7E3CA747.idx new file mode 100644 index 0000000..f5d56a6 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtoolbar.h.9D81B7BE7E3CA747.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.F33B059052AE0FEC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.F33B059052AE0FEC.idx new file mode 100644 index 0000000..4719a3b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.F33B059052AE0FEC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransform.h.BA68BB8DBC350B7E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransform.h.BA68BB8DBC350B7E.idx new file mode 100644 index 0000000..ea17367 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransform.h.BA68BB8DBC350B7E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtranslator.h.BF72216492E8469C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtranslator.h.BF72216492E8469C.idx new file mode 100644 index 0000000..330c3d2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtranslator.h.BF72216492E8469C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.3ACE05EF7F59BAAA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.3ACE05EF7F59BAAA.idx new file mode 100644 index 0000000..6e71285 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.3ACE05EF7F59BAAA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.7638B1428BCA7CCE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.7638B1428BCA7CCE.idx new file mode 100644 index 0000000..7512d76 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.7638B1428BCA7CCE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.E7844495AB32687E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.E7844495AB32687E.idx new file mode 100644 index 0000000..854315f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.E7844495AB32687E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.91F9F89BB497EC22.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.91F9F89BB497EC22.idx new file mode 100644 index 0000000..5e3517d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.91F9F89BB497EC22.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.B85C7393717F9A64.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.B85C7393717F9A64.idx new file mode 100644 index 0000000..4cb2a76 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.B85C7393717F9A64.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.A59D09D327D8EF3C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.A59D09D327D8EF3C.idx new file mode 100644 index 0000000..cf3c99f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.A59D09D327D8EF3C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.807FD10BF8733E71.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.807FD10BF8733E71.idx new file mode 100644 index 0000000..a51037e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.807FD10BF8733E71.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.7C61D99D46AD880F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.7C61D99D46AD880F.idx new file mode 100644 index 0000000..3c3be81 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.7C61D99D46AD880F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.F3210FCF68759217.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.F3210FCF68759217.idx new file mode 100644 index 0000000..e31a6c7 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.F3210FCF68759217.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.9BDB3D938300B2B8.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.9BDB3D938300B2B8.idx new file mode 100644 index 0000000..a0a5d28 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.9BDB3D938300B2B8.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurl.h.6B31F98D8B0CCD96.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurl.h.6B31F98D8B0CCD96.idx new file mode 100644 index 0000000..bf21069 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurl.h.6B31F98D8B0CCD96.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.538F255FB80A0CFE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.538F255FB80A0CFE.idx new file mode 100644 index 0000000..1cdf602 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.538F255FB80A0CFE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvalidator.h.FBF6A341C4787A47.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvalidator.h.FBF6A341C4787A47.idx new file mode 100644 index 0000000..b250a15 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvalidator.h.FBF6A341C4787A47.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.9FD355B50E1B1D7F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.9FD355B50E1B1D7F.idx new file mode 100644 index 0000000..cc6e046 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.9FD355B50E1B1D7F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.ECE3E7CFCDC03368.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.ECE3E7CFCDC03368.idx new file mode 100644 index 0000000..c610c58 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.ECE3E7CFCDC03368.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector.h.63EDD1A81CC4E847.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector.h.63EDD1A81CC4E847.idx new file mode 100644 index 0000000..f2783ba Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector.h.63EDD1A81CC4E847.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.2A470B5048EDB83E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.2A470B5048EDB83E.idx new file mode 100644 index 0000000..4ca7ab8 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.2A470B5048EDB83E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwidget.h.767BFCE81A744F46.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwidget.h.767BFCE81A744F46.idx new file mode 100644 index 0000000..717145f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwidget.h.767BFCE81A744F46.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.5F1FDA4EA155B2E2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.5F1FDA4EA155B2E2.idx new file mode 100644 index 0000000..69452f6 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.5F1FDA4EA155B2E2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.1B48B6204F3732A3.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.1B48B6204F3732A3.idx new file mode 100644 index 0000000..4da69cc Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.1B48B6204F3732A3.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.A3A8268A5E0D4C69.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.A3A8268A5E0D4C69.idx new file mode 100644 index 0000000..348e4b6 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.A3A8268A5E0D4C69.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.A362E2045450767A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.A362E2045450767A.idx new file mode 100644 index 0000000..d4b3770 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.A362E2045450767A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.DBA0DC31F8FAB6D9.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.DBA0DC31F8FAB6D9.idx new file mode 100644 index 0000000..555a318 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.DBA0DC31F8FAB6D9.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.B3DEDD7141BA261D.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.B3DEDD7141BA261D.idx new file mode 100644 index 0000000..b7710a6 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.B3DEDD7141BA261D.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.59F884F6F3D2F5DF.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.59F884F6F3D2F5DF.idx new file mode 100644 index 0000000..32ee01f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.59F884F6F3D2F5DF.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.A6DCDC4ED6F840C6.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.A6DCDC4ED6F840C6.idx new file mode 100644 index 0000000..00529ca Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.A6DCDC4ED6F840C6.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/scoreboard.cpp.2156A3FF1DB66E66.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/scoreboard.cpp.2156A3FF1DB66E66.idx new file mode 100644 index 0000000..9514b92 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/scoreboard.cpp.2156A3FF1DB66E66.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/scoreboard.h.EFC83CE4D12504CB.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/scoreboard.h.EFC83CE4D12504CB.idx new file mode 100644 index 0000000..928ddb5 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/scoreboard.h.EFC83CE4D12504CB.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.68992A1576396FB9.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.68992A1576396FB9.idx new file mode 100644 index 0000000..9e2297c Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.68992A1576396FB9.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.8E21CDEAB2CB0092.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.8E21CDEAB2CB0092.idx new file mode 100644 index 0000000..f55edf9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.8E21CDEAB2CB0092.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.8B9E1B90955C5A83.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.8B9E1B90955C5A83.idx new file mode 100644 index 0000000..eca3406 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.8B9E1B90955C5A83.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/signal.h.A33F8F7F5B7492C2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/signal.h.A33F8F7F5B7492C2.idx new file mode 100644 index 0000000..98118ca Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/signal.h.A33F8F7F5B7492C2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.504AD9D0B2270980.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.504AD9D0B2270980.idx new file mode 100644 index 0000000..17bf123 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.504AD9D0B2270980.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.080B76279391F171.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.080B76279391F171.idx new file mode 100644 index 0000000..93b8e19 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.080B76279391F171.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.A8E681575AB26214.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.A8E681575AB26214.idx new file mode 100644 index 0000000..e28d749 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.A8E681575AB26214.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.73AD2529EE7BFDF6.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.73AD2529EE7BFDF6.idx new file mode 100644 index 0000000..5cf5ed1 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.73AD2529EE7BFDF6.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.E58B155D85D51B84.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.E58B155D85D51B84.idx new file mode 100644 index 0000000..99692f7 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.E58B155D85D51B84.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.693549CBBEF139E9.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.693549CBBEF139E9.idx new file mode 100644 index 0000000..a581959 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.693549CBBEF139E9.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.BF37679C0C47E2C4.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.BF37679C0C47E2C4.idx new file mode 100644 index 0000000..8e69873 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.BF37679C0C47E2C4.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.17627E2DA674B96A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.17627E2DA674B96A.idx new file mode 100644 index 0000000..b2c640a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.17627E2DA674B96A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.1F946C5C715873EE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.1F946C5C715873EE.idx new file mode 100644 index 0000000..ec88b6d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.1F946C5C715873EE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.35CA66C9019E27AE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.35CA66C9019E27AE.idx new file mode 100644 index 0000000..171372a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.35CA66C9019E27AE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.38586BCA99051192.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.38586BCA99051192.idx new file mode 100644 index 0000000..c7487b2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.38586BCA99051192.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_s.h.8061CBF28DF89A2C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_s.h.8061CBF28DF89A2C.idx new file mode 100644 index 0000000..0437379 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_s.h.8061CBF28DF89A2C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.8D1B849F925680B2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.8D1B849F925680B2.idx new file mode 100644 index 0000000..3ddaf6b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.8D1B849F925680B2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.D92D616567CD7C26.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.D92D616567CD7C26.idx new file mode 100644 index 0000000..3bb8f5d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.D92D616567CD7C26.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib_s.h.7339488D62437CC2.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib_s.h.7339488D62437CC2.idx new file mode 100644 index 0000000..6c516ee Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib_s.h.7339488D62437CC2.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.5FCBF7AD2C39CA69.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.5FCBF7AD2C39CA69.idx new file mode 100644 index 0000000..6fc556a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.5FCBF7AD2C39CA69.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.1FC215A54552113D.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.1FC215A54552113D.idx new file mode 100644 index 0000000..b81bd1a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.1FC215A54552113D.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.6D71D49D9B7DFC37.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.6D71D49D9B7DFC37.idx new file mode 100644 index 0000000..f1ddf12 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.6D71D49D9B7DFC37.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.2115DED7B6B48E12.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.2115DED7B6B48E12.idx new file mode 100644 index 0000000..50e41dd Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.2115DED7B6B48E12.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.7AA784877DC3C96E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.7AA784877DC3C96E.idx new file mode 100644 index 0000000..1633d50 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.7AA784877DC3C96E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.F16E2E2BA134A775.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.F16E2E2BA134A775.idx new file mode 100644 index 0000000..5ac6225 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.F16E2E2BA134A775.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.02F4896DC76FA048.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.02F4896DC76FA048.idx new file mode 100644 index 0000000..0306445 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.02F4896DC76FA048.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.A6795C2EA8A9B6EC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.A6795C2EA8A9B6EC.idx new file mode 100644 index 0000000..8fc5dec Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.A6795C2EA8A9B6EC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.0AC872A679C614BD.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.0AC872A679C614BD.idx new file mode 100644 index 0000000..e9f1408 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.0AC872A679C614BD.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.4F732471E14F1E13.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.4F732471E14F1E13.idx new file mode 100644 index 0000000..cabbf1d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.4F732471E14F1E13.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.169186F18F6403BE.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.169186F18F6403BE.idx new file mode 100644 index 0000000..a6f9b75 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.169186F18F6403BE.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.6CEB5291DF5FE3CA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.6CEB5291DF5FE3CA.idx new file mode 100644 index 0000000..dd4fd83 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.6CEB5291DF5FE3CA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.9CBFE6ED9B867060.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.9CBFE6ED9B867060.idx new file mode 100644 index 0000000..315c44b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.9CBFE6ED9B867060.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.70C5E29C32591536.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.70C5E29C32591536.idx new file mode 100644 index 0000000..d2371d7 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.70C5E29C32591536.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.4FD711A69F43C097.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.4FD711A69F43C097.idx new file mode 100644 index 0000000..327f5a9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.4FD711A69F43C097.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.2EB7BAF40896FA63.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.2EB7BAF40896FA63.idx new file mode 100644 index 0000000..16008ad Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.2EB7BAF40896FA63.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.72F780832F9AEC43.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.72F780832F9AEC43.idx new file mode 100644 index 0000000..77b5da0 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.72F780832F9AEC43.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.6DA6C35CACB0A85E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.6DA6C35CACB0A85E.idx new file mode 100644 index 0000000..426079b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.6DA6C35CACB0A85E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.FD9EBBB08537D2BA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.FD9EBBB08537D2BA.idx new file mode 100644 index 0000000..c219b9f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.FD9EBBB08537D2BA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.6760409A3CC06C3D.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.6760409A3CC06C3D.idx new file mode 100644 index 0000000..f4522c7 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.6760409A3CC06C3D.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.04A38524C2347C98.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.04A38524C2347C98.idx new file mode 100644 index 0000000..208d748 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.04A38524C2347C98.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.76776BBBF64C19DC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.76776BBBF64C19DC.idx new file mode 100644 index 0000000..e90c093 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.76776BBBF64C19DC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.F65DE088D3155712.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.F65DE088D3155712.idx new file mode 100644 index 0000000..225d603 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.F65DE088D3155712.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.7A741CDD50DD371B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.7A741CDD50DD371B.idx new file mode 100644 index 0000000..77ad0c1 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.7A741CDD50DD371B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.0FAB06F7A6B7FE94.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.0FAB06F7A6B7FE94.idx new file mode 100644 index 0000000..db9dbe9 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.0FAB06F7A6B7FE94.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.DD656C88A98DFFA0.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.DD656C88A98DFFA0.idx new file mode 100644 index 0000000..ab34b95 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.DD656C88A98DFFA0.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.366B11A8540BE20D.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.366B11A8540BE20D.idx new file mode 100644 index 0000000..8ab7dea Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.366B11A8540BE20D.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_s.h.3F6D0AA44CAA2977.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_s.h.3F6D0AA44CAA2977.idx new file mode 100644 index 0000000..199f85b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_s.h.3F6D0AA44CAA2977.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.163187C18809B48B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.163187C18809B48B.idx new file mode 100644 index 0000000..8f97064 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.163187C18809B48B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.F58C450763973E11.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.F58C450763973E11.idx new file mode 100644 index 0000000..056426f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.F58C450763973E11.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.D6779A547A10EB5E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.D6779A547A10EB5E.idx new file mode 100644 index 0000000..d23d9fb Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.D6779A547A10EB5E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/swprintf.inl.FD7DE59279BE564F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/swprintf.inl.FD7DE59279BE564F.idx new file mode 100644 index 0000000..55f0b43 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/swprintf.inl.FD7DE59279BE564F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.63DF5F530AD2B8F8.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.63DF5F530AD2B8F8.idx new file mode 100644 index 0000000..420d014 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.63DF5F530AD2B8F8.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.A1743B2410D17FC3.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.A1743B2410D17FC3.idx new file mode 100644 index 0000000..40ac907 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.A1743B2410D17FC3.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb.h.3BD0B6AE3923456D.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb.h.3BD0B6AE3923456D.idx new file mode 100644 index 0000000..e3568d2 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb.h.3BD0B6AE3923456D.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb_s.h.304E7F8020D14FB1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb_s.h.304E7F8020D14FB1.idx new file mode 100644 index 0000000..8cb1d99 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb_s.h.304E7F8020D14FB1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.2FC5ACF5359CC6D4.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.2FC5ACF5359CC6D4.idx new file mode 100644 index 0000000..856bc50 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.2FC5ACF5359CC6D4.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.EF1DD7E3AB38D0D3.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.EF1DD7E3AB38D0D3.idx new file mode 100644 index 0000000..568ba78 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.EF1DD7E3AB38D0D3.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.9451E829FD38CE9F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.9451E829FD38CE9F.idx new file mode 100644 index 0000000..75b99e7 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.9451E829FD38CE9F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.FED1A1799E7A2CA6.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.FED1A1799E7A2CA6.idx new file mode 100644 index 0000000..952930b Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.FED1A1799E7A2CA6.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.53DDDF7F7C6025B6.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.53DDDF7F7C6025B6.idx new file mode 100644 index 0000000..a9c5254 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.53DDDF7F7C6025B6.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_mainwindow.h.FA8A0C4D0CBFDC3C.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_mainwindow.h.FA8A0C4D0CBFDC3C.idx new file mode 100644 index 0000000..76abe6d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_mainwindow.h.FA8A0C4D0CBFDC3C.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_playerbox.cpp.1C48FCC75013FE8B.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_playerbox.cpp.1C48FCC75013FE8B.idx new file mode 100644 index 0000000..0b11c59 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_playerbox.cpp.1C48FCC75013FE8B.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_playerbox.h.28C5CAF5D2923592.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_playerbox.h.28C5CAF5D2923592.idx new file mode 100644 index 0000000..f317b06 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_playerbox.h.28C5CAF5D2923592.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_playerbox.h.B08864B150622C2E.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_playerbox.h.B08864B150622C2E.idx new file mode 100644 index 0000000..6cce5e4 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_playerbox.h.B08864B150622C2E.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.C93710E20161FAEC.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.C93710E20161FAEC.idx new file mode 100644 index 0000000..b7a4a16 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.C93710E20161FAEC.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.1E0FA4B852FA8CF1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.1E0FA4B852FA8CF1.idx new file mode 100644 index 0000000..65de5bf Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.1E0FA4B852FA8CF1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.C6090430DAC9DB4A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.C6090430DAC9DB4A.idx new file mode 100644 index 0000000..8745d16 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.C6090430DAC9DB4A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.11671F6AA00D664F.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.11671F6AA00D664F.idx new file mode 100644 index 0000000..31ce647 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.11671F6AA00D664F.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.773760631A23EFDD.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.773760631A23EFDD.idx new file mode 100644 index 0000000..2d588ee Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.773760631A23EFDD.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.66741444D7C6F204.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.66741444D7C6F204.idx new file mode 100644 index 0000000..9bd35d3 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.66741444D7C6F204.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.2B0139CE4DB43CA3.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.2B0139CE4DB43CA3.idx new file mode 100644 index 0000000..2fad52e Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.2B0139CE4DB43CA3.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.64CC1240B69E39D1.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.64CC1240B69E39D1.idx new file mode 100644 index 0000000..cf3ef16 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.64CC1240B69E39D1.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/variant.D45F3D6257C9556D.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/variant.D45F3D6257C9556D.idx new file mode 100644 index 0000000..937b996 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/variant.D45F3D6257C9556D.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.1D2414C733323237.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.1D2414C733323237.idx new file mode 100644 index 0000000..8f24f5f Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.1D2414C733323237.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.0244E487C66A7E45.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.0244E487C66A7E45.idx new file mode 100644 index 0000000..e84106d Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.0244E487C66A7E45.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/version.6EA018B9BB0B5C7A.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/version.6EA018B9BB0B5C7A.idx new file mode 100644 index 0000000..b0543de Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/version.6EA018B9BB0B5C7A.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.8A9B623EE88F2D70.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.8A9B623EE88F2D70.idx new file mode 100644 index 0000000..a2fa444 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.8A9B623EE88F2D70.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar_s.h.B3CDC53001A7B5AA.idx b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar_s.h.B3CDC53001A7B5AA.idx new file mode 100644 index 0000000..5781837 Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar_s.h.B3CDC53001A7B5AA.idx differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/compile_commands.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/compile_commands.json new file mode 100644 index 0000000..af1a5b9 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/compile_commands.json @@ -0,0 +1 @@ +[{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-DQT_QML_DEBUG","-g","-std=gnu++17","-fdiagnostics-color=always","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DMINGW_HAS_SECURE_API","-DQT_CORE_LIB","-DQT_GUI_LIB","-DQT_NEEDS_QMAIN","-DQT_WIDGETS_LIB","-DUNICODE","-DWIN32","-DWIN64","-D_ENABLE_EXTENDED_ALIGNED_STORAGE","-D_UNICODE","-D_WIN64","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-IA:\\workspace\\special-broccoli\\app\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\app_autogen\\include","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-IC:\\Qt\\6.7.0\\mingw_64\\include","-IC:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-IC:\\VulkanSDK\\1.3.283.0\\Include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","C:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","A:\\workspace\\special-broccoli\\app\\main.cpp"],"directory":"A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"A:/workspace/special-broccoli/app/main.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-DQT_QML_DEBUG","-g","-std=gnu++17","-fdiagnostics-color=always","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DMINGW_HAS_SECURE_API","-DQT_CORE_LIB","-DQT_GUI_LIB","-DQT_NEEDS_QMAIN","-DQT_WIDGETS_LIB","-DUNICODE","-DWIN32","-DWIN64","-D_ENABLE_EXTENDED_ALIGNED_STORAGE","-D_UNICODE","-D_WIN64","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-IA:\\workspace\\special-broccoli\\app\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\app_autogen\\include","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-IC:\\Qt\\6.7.0\\mingw_64\\include","-IC:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-IC:\\VulkanSDK\\1.3.283.0\\Include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","C:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","A:\\workspace\\special-broccoli\\app\\mainwindow.cpp"],"directory":"A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"A:/workspace/special-broccoli/app/mainwindow.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-DQT_QML_DEBUG","-g","-std=gnu++17","-fdiagnostics-color=always","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DMINGW_HAS_SECURE_API","-DQT_CORE_LIB","-DQT_GUI_LIB","-DQT_NEEDS_QMAIN","-DQT_WIDGETS_LIB","-DUNICODE","-DWIN32","-DWIN64","-D_ENABLE_EXTENDED_ALIGNED_STORAGE","-D_UNICODE","-D_WIN64","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-IA:\\workspace\\special-broccoli\\app\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\app_autogen\\include","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-IC:\\Qt\\6.7.0\\mingw_64\\include","-IC:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-IC:\\VulkanSDK\\1.3.283.0\\Include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","C:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","A:\\workspace\\special-broccoli\\app\\playerbox.cpp"],"directory":"A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"A:/workspace/special-broccoli/app/playerbox.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-DQT_QML_DEBUG","-g","-std=gnu++17","-fdiagnostics-color=always","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DMINGW_HAS_SECURE_API","-DQT_CORE_LIB","-DQT_GUI_LIB","-DQT_NEEDS_QMAIN","-DQT_WIDGETS_LIB","-DUNICODE","-DWIN32","-DWIN64","-D_ENABLE_EXTENDED_ALIGNED_STORAGE","-D_UNICODE","-D_WIN64","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-IA:\\workspace\\special-broccoli\\app\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\app_autogen\\include","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-IC:\\Qt\\6.7.0\\mingw_64\\include","-IC:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-IC:\\VulkanSDK\\1.3.283.0\\Include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","C:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","A:\\workspace\\special-broccoli\\app\\scoreboard.cpp"],"directory":"A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"A:/workspace/special-broccoli/app/scoreboard.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-DQT_QML_DEBUG","-g","-std=gnu++17","-fdiagnostics-color=always","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DMINGW_HAS_SECURE_API","-DQT_CORE_LIB","-DQT_GUI_LIB","-DQT_NEEDS_QMAIN","-DQT_WIDGETS_LIB","-DUNICODE","-DWIN32","-DWIN64","-D_ENABLE_EXTENDED_ALIGNED_STORAGE","-D_UNICODE","-D_WIN64","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-IA:\\workspace\\special-broccoli\\app\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\app_autogen\\include","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-IC:\\Qt\\6.7.0\\mingw_64\\include","-IC:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-IC:\\VulkanSDK\\1.3.283.0\\Include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","C:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","A:\\workspace\\special-broccoli\\app\\matchui.cpp"],"directory":"A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"A:/workspace/special-broccoli/app/matchui.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-DQT_QML_DEBUG","-g","-std=gnu++17","-fdiagnostics-color=always","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DMINGW_HAS_SECURE_API","-DQT_CORE_LIB","-DQT_GUI_LIB","-DQT_NEEDS_QMAIN","-DQT_WIDGETS_LIB","-DUNICODE","-DWIN32","-DWIN64","-D_ENABLE_EXTENDED_ALIGNED_STORAGE","-D_UNICODE","-D_WIN64","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-IA:\\workspace\\special-broccoli\\app\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\app_autogen\\include","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-IC:\\Qt\\6.7.0\\mingw_64\\include","-IC:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-IC:\\VulkanSDK\\1.3.283.0\\Include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","C:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","A:\\workspace\\special-broccoli\\app\\mainwindow.h"],"directory":"A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"A:/workspace/special-broccoli/app/mainwindow.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-DQT_QML_DEBUG","-g","-std=gnu++17","-fdiagnostics-color=always","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DMINGW_HAS_SECURE_API","-DQT_CORE_LIB","-DQT_GUI_LIB","-DQT_NEEDS_QMAIN","-DQT_WIDGETS_LIB","-DUNICODE","-DWIN32","-DWIN64","-D_ENABLE_EXTENDED_ALIGNED_STORAGE","-D_UNICODE","-D_WIN64","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-IA:\\workspace\\special-broccoli\\app\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\app_autogen\\include","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-IC:\\Qt\\6.7.0\\mingw_64\\include","-IC:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-IC:\\VulkanSDK\\1.3.283.0\\Include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","C:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","A:\\workspace\\special-broccoli\\app\\playerbox.h"],"directory":"A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"A:/workspace/special-broccoli/app/playerbox.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-DQT_QML_DEBUG","-g","-std=gnu++17","-fdiagnostics-color=always","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DMINGW_HAS_SECURE_API","-DQT_CORE_LIB","-DQT_GUI_LIB","-DQT_NEEDS_QMAIN","-DQT_WIDGETS_LIB","-DUNICODE","-DWIN32","-DWIN64","-D_ENABLE_EXTENDED_ALIGNED_STORAGE","-D_UNICODE","-D_WIN64","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-IA:\\workspace\\special-broccoli\\app\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\app_autogen\\include","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-IC:\\Qt\\6.7.0\\mingw_64\\include","-IC:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-IC:\\VulkanSDK\\1.3.283.0\\Include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","C:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","A:\\workspace\\special-broccoli\\app\\scoreboard.h"],"directory":"A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"A:/workspace/special-broccoli/app/scoreboard.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-DQT_QML_DEBUG","-g","-std=gnu++17","-fdiagnostics-color=always","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DMINGW_HAS_SECURE_API","-DQT_CORE_LIB","-DQT_GUI_LIB","-DQT_NEEDS_QMAIN","-DQT_WIDGETS_LIB","-DUNICODE","-DWIN32","-DWIN64","-D_ENABLE_EXTENDED_ALIGNED_STORAGE","-D_UNICODE","-D_WIN64","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-IC:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-IA:\\workspace\\special-broccoli\\app\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\app_autogen\\include","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-IC:\\Qt\\6.7.0\\mingw_64\\include","-IC:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-IC:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-IC:\\VulkanSDK\\1.3.283.0\\Include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","C:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","C:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","C:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","A:\\workspace\\special-broccoli\\app\\matchui.h"],"directory":"A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"A:/workspace/special-broccoli/app/matchui.h"}] \ No newline at end of file diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeCache.txt b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeCache.txt new file mode 100644 index 0000000..58995e9 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeCache.txt @@ -0,0 +1,1287 @@ +# This is the CMakeCache file. +# For build in directory: a:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug +# It was generated by CMake: C:/Qt/Tools/CMake_64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/ar.exe + +//No help, variable specified on the command line. +CMAKE_BUILD_TYPE:STRING=Debug + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=1 + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=C:/Qt/Tools/mingw1120_64/bin/g++.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//No help, variable specified on the command line. +CMAKE_CXX_FLAGS_INIT:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +CMAKE_CXX_OUTPUT_EXTENSION:STRING=.obj + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//No help, variable specified on the command line. +CMAKE_C_COMPILER:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/gcc.exe + +CMAKE_C_OUTPUT_EXTENSION:STRING= + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/dlltool.exe + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/pkgRedirects + +//No help, variable specified on the command line. +CMAKE_GENERATOR:STRING=Ninja + +//Convert GNU import libraries to MS format (requires Visual Studio) +CMAKE_GNUtoMS:BOOL=OFF + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/app + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Qt/Tools/Ninja/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/objdump.exe + +//No help, variable specified on the command line. +CMAKE_PREFIX_PATH:PATH=C:/Qt/6.7.0/mingw_64 + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//No help, variable specified on the command line. +CMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=app + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/ranlib.exe + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/windres.exe + +//Flags for Windows Resource Compiler during all build types. +CMAKE_RC_FLAGS:STRING= + +//Flags for Windows Resource Compiler during DEBUG builds. +CMAKE_RC_FLAGS_DEBUG:STRING= + +//Flags for Windows Resource Compiler during MINSIZEREL builds. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during RELEASE builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during RELWITHDEBINFO builds. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//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. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Additional directories where find(Qt6 ...) host Qt components +// are searched +QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH:STRING= + +//Additional directories where find(Qt6 ...) components are searched +QT_ADDITIONAL_PACKAGES_PREFIX_PATH:STRING= + +//Skip Qt Creator's package manager auto-setup +QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP:BOOL=OFF + +//The directory containing a CMake configuration file for QT. +QT_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6 + +//No help, variable specified on the command line. +QT_QMAKE_EXECUTABLE:FILEPATH=C:/Qt/6.7.0/mingw_64/bin/qmake.exe + +//The directory containing a CMake configuration file for Qt6CoreTools. +Qt6CoreTools_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools + +//The directory containing a CMake configuration file for Qt6Core. +Qt6Core_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core + +//The directory containing a CMake configuration file for Qt6EntryPointPrivate. +Qt6EntryPointPrivate_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate + +//The directory containing a CMake configuration file for Qt6GuiTools. +Qt6GuiTools_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools + +//The directory containing a CMake configuration file for Qt6Gui. +Qt6Gui_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui + +//The directory containing a CMake configuration file for Qt6LinguistTools. +Qt6LinguistTools_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools + +//The directory containing a CMake configuration file for Qt6WidgetsTools. +Qt6WidgetsTools_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools + +//The directory containing a CMake configuration file for Qt6Widgets. +Qt6Widgets_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets + +//The directory containing a CMake configuration file for Qt6ZlibPrivate. +Qt6ZlibPrivate_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate + +//The directory containing a CMake configuration file for Qt6. +Qt6_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6 + +//Path to a program. +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE:FILEPATH=C:/VulkanSDK/1.3.283.0/Bin/glslangValidator.exe + +//Path to a program. +Vulkan_GLSLC_EXECUTABLE:FILEPATH=C:/VulkanSDK/1.3.283.0/Bin/glslc.exe + +//Path to a file. +Vulkan_INCLUDE_DIR:PATH=C:/VulkanSDK/1.3.283.0/Include + +//Path to a library. +Vulkan_LIBRARY:FILEPATH=C:/VulkanSDK/1.3.283.0/Lib/vulkan-1.lib + +//Path to a program. +WINDEPLOYQT_EXECUTABLE:FILEPATH=C:/Qt/6.7.0/mingw_64/bin/windeployqt.exe + +//Value Computed by CMake +app_BINARY_DIR:STATIC=A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug + +//Value Computed by CMake +app_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +app_SOURCE_DIR:STATIC=A:/workspace/special-broccoli/app + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=a:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=27 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=7 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Qt/Tools/CMake_64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Qt/Tools/CMake_64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Qt/Tools/CMake_64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/Qt/Tools/CMake_64/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=A:/workspace/special-broccoli/app +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Qt/Tools/CMake_64/share/cmake-3.27 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//Details about finding WrapAtomic +FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic:INTERNAL=[1][v()] +//Details about finding WrapVulkanHeaders +FIND_PACKAGE_MESSAGE_DETAILS_WrapVulkanHeaders:INTERNAL=[C:/VulkanSDK/1.3.283.0/Include][v()] +//Test HAVE_STDATOMIC +HAVE_STDATOMIC:INTERNAL=1 +//Qt feature: abstractbutton (from target Qt6::Widgets) +QT_FEATURE_abstractbutton:INTERNAL=ON +//Qt feature: abstractslider (from target Qt6::Widgets) +QT_FEATURE_abstractslider:INTERNAL=ON +//Qt feature: accessibility (from target Qt6::Gui) +QT_FEATURE_accessibility:INTERNAL=ON +//Qt feature: accessibility_atspi_bridge (from target Qt6::Gui) +QT_FEATURE_accessibility_atspi_bridge:INTERNAL=OFF +//Qt feature: action (from target Qt6::Gui) +QT_FEATURE_action:INTERNAL=ON +//Qt feature: aesni (from target Qt6::Core) +QT_FEATURE_aesni:INTERNAL=ON +//Qt feature: alloca (from target Qt6::Core) +QT_FEATURE_alloca:INTERNAL=ON +//Qt feature: alloca_h (from target Qt6::Core) +QT_FEATURE_alloca_h:INTERNAL=OFF +//Qt feature: alloca_malloc_h (from target Qt6::Core) +QT_FEATURE_alloca_malloc_h:INTERNAL=ON +//Qt feature: android_style_assets (from target Qt6::Core) +QT_FEATURE_android_style_assets:INTERNAL=OFF +//Qt feature: animation (from target Qt6::Core) +QT_FEATURE_animation:INTERNAL=ON +//Qt feature: appstore_compliant (from target Qt6::Core) +QT_FEATURE_appstore_compliant:INTERNAL=OFF +//Qt feature: arm_crc32 (from target Qt6::Core) +QT_FEATURE_arm_crc32:INTERNAL=OFF +//Qt feature: arm_crypto (from target Qt6::Core) +QT_FEATURE_arm_crypto:INTERNAL=OFF +//Qt feature: avx (from target Qt6::Core) +QT_FEATURE_avx:INTERNAL=ON +//Qt feature: avx2 (from target Qt6::Core) +QT_FEATURE_avx2:INTERNAL=ON +//Qt feature: avx512bw (from target Qt6::Core) +QT_FEATURE_avx512bw:INTERNAL=ON +//Qt feature: avx512cd (from target Qt6::Core) +QT_FEATURE_avx512cd:INTERNAL=ON +//Qt feature: avx512dq (from target Qt6::Core) +QT_FEATURE_avx512dq:INTERNAL=ON +//Qt feature: avx512er (from target Qt6::Core) +QT_FEATURE_avx512er:INTERNAL=ON +//Qt feature: avx512f (from target Qt6::Core) +QT_FEATURE_avx512f:INTERNAL=ON +//Qt feature: avx512ifma (from target Qt6::Core) +QT_FEATURE_avx512ifma:INTERNAL=ON +//Qt feature: avx512pf (from target Qt6::Core) +QT_FEATURE_avx512pf:INTERNAL=ON +//Qt feature: avx512vbmi (from target Qt6::Core) +QT_FEATURE_avx512vbmi:INTERNAL=ON +//Qt feature: avx512vbmi2 (from target Qt6::Core) +QT_FEATURE_avx512vbmi2:INTERNAL=ON +//Qt feature: avx512vl (from target Qt6::Core) +QT_FEATURE_avx512vl:INTERNAL=ON +//Qt feature: backtrace (from target Qt6::Core) +QT_FEATURE_backtrace:INTERNAL=OFF +//Qt feature: buttongroup (from target Qt6::Widgets) +QT_FEATURE_buttongroup:INTERNAL=ON +//Qt feature: calendarwidget (from target Qt6::Widgets) +QT_FEATURE_calendarwidget:INTERNAL=ON +//Qt feature: cborstreamreader (from target Qt6::Core) +QT_FEATURE_cborstreamreader:INTERNAL=ON +//Qt feature: cborstreamwriter (from target Qt6::Core) +QT_FEATURE_cborstreamwriter:INTERNAL=ON +//Qt feature: checkbox (from target Qt6::Widgets) +QT_FEATURE_checkbox:INTERNAL=ON +//Qt feature: clipboard (from target Qt6::Gui) +QT_FEATURE_clipboard:INTERNAL=ON +//Qt feature: clock_gettime (from target Qt6::Core) +QT_FEATURE_clock_gettime:INTERNAL=OFF +//Qt feature: clock_monotonic (from target Qt6::Core) +QT_FEATURE_clock_monotonic:INTERNAL=OFF +//Qt feature: close_range (from target Qt6::Core) +QT_FEATURE_close_range:INTERNAL=OFF +//Qt feature: colordialog (from target Qt6::Widgets) +QT_FEATURE_colordialog:INTERNAL=ON +//Qt feature: colornames (from target Qt6::Gui) +QT_FEATURE_colornames:INTERNAL=ON +//Qt feature: columnview (from target Qt6::Widgets) +QT_FEATURE_columnview:INTERNAL=ON +//Qt feature: combobox (from target Qt6::Widgets) +QT_FEATURE_combobox:INTERNAL=ON +//Qt feature: commandlineparser (from target Qt6::Core) +QT_FEATURE_commandlineparser:INTERNAL=ON +//Qt feature: commandlinkbutton (from target Qt6::Widgets) +QT_FEATURE_commandlinkbutton:INTERNAL=ON +//Qt feature: completer (from target Qt6::Widgets) +QT_FEATURE_completer:INTERNAL=ON +//Qt feature: concatenatetablesproxymodel (from target Qt6::Core) +QT_FEATURE_concatenatetablesproxymodel:INTERNAL=ON +//Qt feature: concurrent (from target Qt6::Core) +QT_FEATURE_concurrent:INTERNAL=ON +//Qt feature: contextmenu (from target Qt6::Widgets) +QT_FEATURE_contextmenu:INTERNAL=ON +//Qt feature: cpp_winrt (from target Qt6::Core) +QT_FEATURE_cpp_winrt:INTERNAL=OFF +//Qt feature: cross_compile (from target Qt6::Core) +QT_FEATURE_cross_compile:INTERNAL=OFF +//Qt feature: cssparser (from target Qt6::Gui) +QT_FEATURE_cssparser:INTERNAL=ON +//Qt feature: ctf (from target Qt6::Core) +QT_FEATURE_ctf:INTERNAL=OFF +//Qt feature: cursor (from target Qt6::Gui) +QT_FEATURE_cursor:INTERNAL=ON +//Qt feature: cxx11_future (from target Qt6::Core) +QT_FEATURE_cxx11_future:INTERNAL=ON +//Qt feature: cxx17_filesystem (from target Qt6::Core) +QT_FEATURE_cxx17_filesystem:INTERNAL=ON +//Qt feature: cxx20 (from target Qt6::Core) +QT_FEATURE_cxx20:INTERNAL=OFF +//Qt feature: cxx2a (from target Qt6::Core) +QT_FEATURE_cxx2a:INTERNAL=OFF +//Qt feature: cxx2b (from target Qt6::Core) +QT_FEATURE_cxx2b:INTERNAL=OFF +//Qt feature: datawidgetmapper (from target Qt6::Widgets) +QT_FEATURE_datawidgetmapper:INTERNAL=ON +//Qt feature: datestring (from target Qt6::Core) +QT_FEATURE_datestring:INTERNAL=ON +//Qt feature: datetimeedit (from target Qt6::Widgets) +QT_FEATURE_datetimeedit:INTERNAL=ON +//Qt feature: datetimeparser (from target Qt6::Core) +QT_FEATURE_datetimeparser:INTERNAL=ON +//Qt feature: dbus (from target Qt6::Core) +QT_FEATURE_dbus:INTERNAL=ON +//Qt feature: dbus_linked (from target Qt6::Core) +QT_FEATURE_dbus_linked:INTERNAL=OFF +//Qt feature: debug (from target Qt6::Core) +QT_FEATURE_debug:INTERNAL=OFF +//Qt feature: debug_and_release (from target Qt6::Core) +QT_FEATURE_debug_and_release:INTERNAL=OFF +//Qt feature: desktopservices (from target Qt6::Gui) +QT_FEATURE_desktopservices:INTERNAL=ON +//Qt feature: developer_build (from target Qt6::Core) +QT_FEATURE_developer_build:INTERNAL=OFF +//Qt feature: dial (from target Qt6::Widgets) +QT_FEATURE_dial:INTERNAL=ON +//Qt feature: dialog (from target Qt6::Widgets) +QT_FEATURE_dialog:INTERNAL=ON +//Qt feature: dialogbuttonbox (from target Qt6::Widgets) +QT_FEATURE_dialogbuttonbox:INTERNAL=ON +//Qt feature: direct2d (from target Qt6::Gui) +QT_FEATURE_direct2d:INTERNAL=ON +//Qt feature: direct2d1_1 (from target Qt6::Gui) +QT_FEATURE_direct2d1_1:INTERNAL=ON +//Qt feature: directfb (from target Qt6::Gui) +QT_FEATURE_directfb:INTERNAL=OFF +//Qt feature: directwrite (from target Qt6::Gui) +QT_FEATURE_directwrite:INTERNAL=ON +//Qt feature: directwrite3 (from target Qt6::Gui) +QT_FEATURE_directwrite3:INTERNAL=ON +//Qt feature: dladdr (from target Qt6::Core) +QT_FEATURE_dladdr:INTERNAL=OFF +//Qt feature: dlopen (from target Qt6::Core) +QT_FEATURE_dlopen:INTERNAL=OFF +//Qt feature: dockwidget (from target Qt6::Widgets) +QT_FEATURE_dockwidget:INTERNAL=ON +//Qt feature: doubleconversion (from target Qt6::Core) +QT_FEATURE_doubleconversion:INTERNAL=ON +//Qt feature: draganddrop (from target Qt6::Gui) +QT_FEATURE_draganddrop:INTERNAL=ON +//Qt feature: drm_atomic (from target Qt6::Gui) +QT_FEATURE_drm_atomic:INTERNAL=OFF +//Qt feature: dynamicgl (from target Qt6::Gui) +QT_FEATURE_dynamicgl:INTERNAL=ON +//Qt feature: easingcurve (from target Qt6::Core) +QT_FEATURE_easingcurve:INTERNAL=ON +//Qt feature: effects (from target Qt6::Widgets) +QT_FEATURE_effects:INTERNAL=ON +//Qt feature: egl (from target Qt6::Gui) +QT_FEATURE_egl:INTERNAL=OFF +//Qt feature: egl_x11 (from target Qt6::Gui) +QT_FEATURE_egl_x11:INTERNAL=OFF +//Qt feature: eglfs (from target Qt6::Gui) +QT_FEATURE_eglfs:INTERNAL=OFF +//Qt feature: eglfs_brcm (from target Qt6::Gui) +QT_FEATURE_eglfs_brcm:INTERNAL=OFF +//Qt feature: eglfs_egldevice (from target Qt6::Gui) +QT_FEATURE_eglfs_egldevice:INTERNAL=OFF +//Qt feature: eglfs_gbm (from target Qt6::Gui) +QT_FEATURE_eglfs_gbm:INTERNAL=OFF +//Qt feature: eglfs_mali (from target Qt6::Gui) +QT_FEATURE_eglfs_mali:INTERNAL=OFF +//Qt feature: eglfs_openwfd (from target Qt6::Gui) +QT_FEATURE_eglfs_openwfd:INTERNAL=OFF +//Qt feature: eglfs_rcar (from target Qt6::Gui) +QT_FEATURE_eglfs_rcar:INTERNAL=OFF +//Qt feature: eglfs_viv (from target Qt6::Gui) +QT_FEATURE_eglfs_viv:INTERNAL=OFF +//Qt feature: eglfs_viv_wl (from target Qt6::Gui) +QT_FEATURE_eglfs_viv_wl:INTERNAL=OFF +//Qt feature: eglfs_vsp2 (from target Qt6::Gui) +QT_FEATURE_eglfs_vsp2:INTERNAL=OFF +//Qt feature: eglfs_x11 (from target Qt6::Gui) +QT_FEATURE_eglfs_x11:INTERNAL=OFF +//Qt feature: errormessage (from target Qt6::Widgets) +QT_FEATURE_errormessage:INTERNAL=ON +//Qt feature: etw (from target Qt6::Core) +QT_FEATURE_etw:INTERNAL=OFF +//Qt feature: evdev (from target Qt6::Gui) +QT_FEATURE_evdev:INTERNAL=OFF +//Qt feature: f16c (from target Qt6::Core) +QT_FEATURE_f16c:INTERNAL=ON +//Qt feature: filedialog (from target Qt6::Widgets) +QT_FEATURE_filedialog:INTERNAL=ON +//Qt feature: filesystemiterator (from target Qt6::Core) +QT_FEATURE_filesystemiterator:INTERNAL=ON +//Qt feature: filesystemmodel (from target Qt6::Gui) +QT_FEATURE_filesystemmodel:INTERNAL=ON +//Qt feature: filesystemwatcher (from target Qt6::Core) +QT_FEATURE_filesystemwatcher:INTERNAL=ON +//Qt feature: fontcombobox (from target Qt6::Widgets) +QT_FEATURE_fontcombobox:INTERNAL=ON +//Qt feature: fontconfig (from target Qt6::Gui) +QT_FEATURE_fontconfig:INTERNAL=OFF +//Qt feature: fontdialog (from target Qt6::Widgets) +QT_FEATURE_fontdialog:INTERNAL=ON +//Qt feature: force_asserts (from target Qt6::Core) +QT_FEATURE_force_asserts:INTERNAL=OFF +//Qt feature: force_debug_info (from target Qt6::Core) +QT_FEATURE_force_debug_info:INTERNAL=ON +//Qt feature: forkfd_pidfd (from target Qt6::Core) +QT_FEATURE_forkfd_pidfd:INTERNAL=OFF +//Qt feature: formlayout (from target Qt6::Widgets) +QT_FEATURE_formlayout:INTERNAL=ON +//Qt feature: framework (from target Qt6::Core) +QT_FEATURE_framework:INTERNAL=OFF +//Qt feature: freetype (from target Qt6::Gui) +QT_FEATURE_freetype:INTERNAL=ON +//Qt feature: fscompleter (from target Qt6::Widgets) +QT_FEATURE_fscompleter:INTERNAL=ON +//Qt feature: futimens (from target Qt6::Core) +QT_FEATURE_futimens:INTERNAL=OFF +//Qt feature: future (from target Qt6::Core) +QT_FEATURE_future:INTERNAL=ON +//Qt feature: gc_binaries (from target Qt6::Core) +QT_FEATURE_gc_binaries:INTERNAL=OFF +//Qt feature: gestures (from target Qt6::Core) +QT_FEATURE_gestures:INTERNAL=ON +//Qt feature: getauxval (from target Qt6::Core) +QT_FEATURE_getauxval:INTERNAL=OFF +//Qt feature: getentropy (from target Qt6::Core) +QT_FEATURE_getentropy:INTERNAL=OFF +//Qt feature: gif (from target Qt6::Gui) +QT_FEATURE_gif:INTERNAL=ON +//Qt feature: glib (from target Qt6::Core) +QT_FEATURE_glib:INTERNAL=OFF +//Qt feature: graphicseffect (from target Qt6::Widgets) +QT_FEATURE_graphicseffect:INTERNAL=ON +//Qt feature: graphicsframecapture (from target Qt6::Gui) +QT_FEATURE_graphicsframecapture:INTERNAL=OFF +//Qt feature: graphicsview (from target Qt6::Widgets) +QT_FEATURE_graphicsview:INTERNAL=ON +//Qt feature: groupbox (from target Qt6::Widgets) +QT_FEATURE_groupbox:INTERNAL=ON +//Qt feature: gtk3 (from target Qt6::Widgets) +QT_FEATURE_gtk3:INTERNAL=OFF +//Qt feature: gui (from target Qt6::Core) +QT_FEATURE_gui:INTERNAL=ON +//Qt feature: harfbuzz (from target Qt6::Gui) +QT_FEATURE_harfbuzz:INTERNAL=ON +//Qt feature: highdpiscaling (from target Qt6::Gui) +QT_FEATURE_highdpiscaling:INTERNAL=ON +//Qt feature: hijricalendar (from target Qt6::Core) +QT_FEATURE_hijricalendar:INTERNAL=ON +//Qt feature: ico (from target Qt6::Gui) +QT_FEATURE_ico:INTERNAL=ON +//Qt feature: icu (from target Qt6::Core) +QT_FEATURE_icu:INTERNAL=OFF +//Qt feature: identityproxymodel (from target Qt6::Core) +QT_FEATURE_identityproxymodel:INTERNAL=ON +//Qt feature: im (from target Qt6::Gui) +QT_FEATURE_im:INTERNAL=ON +//Qt feature: image_heuristic_mask (from target Qt6::Gui) +QT_FEATURE_image_heuristic_mask:INTERNAL=ON +//Qt feature: image_text (from target Qt6::Gui) +QT_FEATURE_image_text:INTERNAL=ON +//Qt feature: imageformat_bmp (from target Qt6::Gui) +QT_FEATURE_imageformat_bmp:INTERNAL=ON +//Qt feature: imageformat_jpeg (from target Qt6::Gui) +QT_FEATURE_imageformat_jpeg:INTERNAL=ON +//Qt feature: imageformat_png (from target Qt6::Gui) +QT_FEATURE_imageformat_png:INTERNAL=ON +//Qt feature: imageformat_ppm (from target Qt6::Gui) +QT_FEATURE_imageformat_ppm:INTERNAL=ON +//Qt feature: imageformat_xbm (from target Qt6::Gui) +QT_FEATURE_imageformat_xbm:INTERNAL=ON +//Qt feature: imageformat_xpm (from target Qt6::Gui) +QT_FEATURE_imageformat_xpm:INTERNAL=ON +//Qt feature: imageformatplugin (from target Qt6::Gui) +QT_FEATURE_imageformatplugin:INTERNAL=ON +//Qt feature: imageio_text_loading (from target Qt6::Gui) +QT_FEATURE_imageio_text_loading:INTERNAL=ON +//Qt feature: inotify (from target Qt6::Core) +QT_FEATURE_inotify:INTERNAL=OFF +//Qt feature: inputdialog (from target Qt6::Widgets) +QT_FEATURE_inputdialog:INTERNAL=ON +//Qt feature: integrityfb (from target Qt6::Gui) +QT_FEATURE_integrityfb:INTERNAL=OFF +//Qt feature: integrityhid (from target Qt6::Gui) +QT_FEATURE_integrityhid:INTERNAL=OFF +//Qt feature: intelcet (from target Qt6::Core) +QT_FEATURE_intelcet:INTERNAL=OFF +//Qt feature: islamiccivilcalendar (from target Qt6::Core) +QT_FEATURE_islamiccivilcalendar:INTERNAL=ON +//Qt feature: itemmodel (from target Qt6::Core) +QT_FEATURE_itemmodel:INTERNAL=ON +//Qt feature: itemviews (from target Qt6::Widgets) +QT_FEATURE_itemviews:INTERNAL=ON +//Qt feature: jalalicalendar (from target Qt6::Core) +QT_FEATURE_jalalicalendar:INTERNAL=ON +//Qt feature: journald (from target Qt6::Core) +QT_FEATURE_journald:INTERNAL=OFF +//Qt feature: jpeg (from target Qt6::Gui) +QT_FEATURE_jpeg:INTERNAL=ON +//Qt feature: keysequenceedit (from target Qt6::Widgets) +QT_FEATURE_keysequenceedit:INTERNAL=ON +//Qt feature: kms (from target Qt6::Gui) +QT_FEATURE_kms:INTERNAL=OFF +//Qt feature: label (from target Qt6::Widgets) +QT_FEATURE_label:INTERNAL=ON +//Qt feature: largefile (from target Qt6::Core) +QT_FEATURE_largefile:INTERNAL=ON +//Qt feature: lcdnumber (from target Qt6::Widgets) +QT_FEATURE_lcdnumber:INTERNAL=ON +//Qt feature: libinput (from target Qt6::Gui) +QT_FEATURE_libinput:INTERNAL=OFF +//Qt feature: libinput_axis_api (from target Qt6::Gui) +QT_FEATURE_libinput_axis_api:INTERNAL=OFF +//Qt feature: libinput_hires_wheel_support (from target Qt6::Gui) +QT_FEATURE_libinput_hires_wheel_support:INTERNAL=OFF +//Qt feature: library (from target Qt6::Core) +QT_FEATURE_library:INTERNAL=ON +//Qt feature: libudev (from target Qt6::Core) +QT_FEATURE_libudev:INTERNAL=OFF +//Qt feature: lineedit (from target Qt6::Widgets) +QT_FEATURE_lineedit:INTERNAL=ON +//Qt feature: linkat (from target Qt6::Core) +QT_FEATURE_linkat:INTERNAL=OFF +//Qt feature: linuxfb (from target Qt6::Gui) +QT_FEATURE_linuxfb:INTERNAL=OFF +//Qt feature: listview (from target Qt6::Widgets) +QT_FEATURE_listview:INTERNAL=ON +//Qt feature: listwidget (from target Qt6::Widgets) +QT_FEATURE_listwidget:INTERNAL=ON +//Qt feature: lttng (from target Qt6::Core) +QT_FEATURE_lttng:INTERNAL=OFF +//Qt feature: mainwindow (from target Qt6::Widgets) +QT_FEATURE_mainwindow:INTERNAL=ON +//Qt feature: mdiarea (from target Qt6::Widgets) +QT_FEATURE_mdiarea:INTERNAL=ON +//Qt feature: menu (from target Qt6::Widgets) +QT_FEATURE_menu:INTERNAL=ON +//Qt feature: menubar (from target Qt6::Widgets) +QT_FEATURE_menubar:INTERNAL=ON +//Qt feature: messagebox (from target Qt6::Widgets) +QT_FEATURE_messagebox:INTERNAL=ON +//Qt feature: mimetype (from target Qt6::Core) +QT_FEATURE_mimetype:INTERNAL=ON +//Qt feature: mimetype_database (from target Qt6::Core) +QT_FEATURE_mimetype_database:INTERNAL=ON +//Qt feature: mips_dsp (from target Qt6::Core) +QT_FEATURE_mips_dsp:INTERNAL=OFF +//Qt feature: mips_dspr2 (from target Qt6::Core) +QT_FEATURE_mips_dspr2:INTERNAL=OFF +//Qt feature: movie (from target Qt6::Gui) +QT_FEATURE_movie:INTERNAL=ON +//Qt feature: mtdev (from target Qt6::Gui) +QT_FEATURE_mtdev:INTERNAL=OFF +//Qt feature: multiprocess (from target Qt6::Gui) +QT_FEATURE_multiprocess:INTERNAL=ON +//Qt feature: neon (from target Qt6::Core) +QT_FEATURE_neon:INTERNAL=OFF +//Qt feature: network (from target Qt6::Core) +QT_FEATURE_network:INTERNAL=ON +//Qt feature: no_direct_extern_access (from target Qt6::Core) +QT_FEATURE_no_direct_extern_access:INTERNAL=OFF +//Qt feature: no_pkg_config (from target Qt6::Core) +QT_FEATURE_no_pkg_config:INTERNAL=ON +//Qt feature: opengl (from target Qt6::Gui) +QT_FEATURE_opengl:INTERNAL=ON +//Qt feature: opengles2 (from target Qt6::Gui) +QT_FEATURE_opengles2:INTERNAL=OFF +//Qt feature: opengles3 (from target Qt6::Gui) +QT_FEATURE_opengles3:INTERNAL=OFF +//Qt feature: opengles31 (from target Qt6::Gui) +QT_FEATURE_opengles31:INTERNAL=OFF +//Qt feature: opengles32 (from target Qt6::Gui) +QT_FEATURE_opengles32:INTERNAL=OFF +//Qt feature: openssl (from target Qt6::Core) +QT_FEATURE_openssl:INTERNAL=ON +//Qt feature: openssl_hash (from target Qt6::Core) +QT_FEATURE_openssl_hash:INTERNAL=OFF +//Qt feature: openssl_linked (from target Qt6::Core) +QT_FEATURE_openssl_linked:INTERNAL=OFF +//Qt feature: opensslv11 (from target Qt6::Core) +QT_FEATURE_opensslv11:INTERNAL=OFF +//Qt feature: opensslv30 (from target Qt6::Core) +QT_FEATURE_opensslv30:INTERNAL=ON +//Qt feature: openvg (from target Qt6::Gui) +QT_FEATURE_openvg:INTERNAL=OFF +//Qt feature: pcre2 (from target Qt6::Core) +QT_FEATURE_pcre2:INTERNAL=ON +//Qt feature: pdf (from target Qt6::Gui) +QT_FEATURE_pdf:INTERNAL=ON +//Qt feature: permissions (from target Qt6::Core) +QT_FEATURE_permissions:INTERNAL=ON +//Qt feature: picture (from target Qt6::Gui) +QT_FEATURE_picture:INTERNAL=ON +//Qt feature: pkg_config (from target Qt6::Core) +QT_FEATURE_pkg_config:INTERNAL=OFF +//Qt feature: plugin_manifest (from target Qt6::Core) +QT_FEATURE_plugin_manifest:INTERNAL=ON +//Qt feature: png (from target Qt6::Gui) +QT_FEATURE_png:INTERNAL=ON +//Qt feature: poll_exit_on_error (from target Qt6::Core) +QT_FEATURE_poll_exit_on_error:INTERNAL=OFF +//Qt feature: poll_poll (from target Qt6::Core) +QT_FEATURE_poll_poll:INTERNAL=OFF +//Qt feature: poll_pollts (from target Qt6::Core) +QT_FEATURE_poll_pollts:INTERNAL=OFF +//Qt feature: poll_ppoll (from target Qt6::Core) +QT_FEATURE_poll_ppoll:INTERNAL=OFF +//Qt feature: poll_select (from target Qt6::Core) +QT_FEATURE_poll_select:INTERNAL=OFF +//Qt feature: posix_fallocate (from target Qt6::Core) +QT_FEATURE_posix_fallocate:INTERNAL=OFF +//Qt feature: posix_sem (from target Qt6::Core) +QT_FEATURE_posix_sem:INTERNAL=ON +//Qt feature: posix_shm (from target Qt6::Core) +QT_FEATURE_posix_shm:INTERNAL=OFF +//Qt feature: precompile_header (from target Qt6::Core) +QT_FEATURE_precompile_header:INTERNAL=ON +//Qt feature: printsupport (from target Qt6::Core) +QT_FEATURE_printsupport:INTERNAL=ON +//Qt feature: private_tests (from target Qt6::Core) +QT_FEATURE_private_tests:INTERNAL=OFF +//Qt feature: process (from target Qt6::Core) +QT_FEATURE_process:INTERNAL=ON +//Qt feature: processenvironment (from target Qt6::Core) +QT_FEATURE_processenvironment:INTERNAL=ON +//Qt feature: progressbar (from target Qt6::Widgets) +QT_FEATURE_progressbar:INTERNAL=ON +//Qt feature: progressdialog (from target Qt6::Widgets) +QT_FEATURE_progressdialog:INTERNAL=ON +//Qt feature: proxymodel (from target Qt6::Core) +QT_FEATURE_proxymodel:INTERNAL=ON +//Qt feature: pushbutton (from target Qt6::Widgets) +QT_FEATURE_pushbutton:INTERNAL=ON +//Qt feature: qqnx_imf (from target Qt6::Gui) +QT_FEATURE_qqnx_imf:INTERNAL=OFF +//Qt feature: qqnx_pps (from target Qt6::Core) +QT_FEATURE_qqnx_pps:INTERNAL=OFF +//Qt feature: radiobutton (from target Qt6::Widgets) +QT_FEATURE_radiobutton:INTERNAL=ON +//Qt feature: raster_64bit (from target Qt6::Gui) +QT_FEATURE_raster_64bit:INTERNAL=ON +//Qt feature: raster_fp (from target Qt6::Gui) +QT_FEATURE_raster_fp:INTERNAL=ON +//Qt feature: rdrnd (from target Qt6::Core) +QT_FEATURE_rdrnd:INTERNAL=ON +//Qt feature: rdseed (from target Qt6::Core) +QT_FEATURE_rdseed:INTERNAL=ON +//Qt feature: reduce_exports (from target Qt6::Core) +QT_FEATURE_reduce_exports:INTERNAL=ON +//Qt feature: reduce_relocations (from target Qt6::Core) +QT_FEATURE_reduce_relocations:INTERNAL=OFF +//Qt feature: regularexpression (from target Qt6::Core) +QT_FEATURE_regularexpression:INTERNAL=ON +//Qt feature: relocatable (from target Qt6::Core) +QT_FEATURE_relocatable:INTERNAL=ON +//Qt feature: renameat2 (from target Qt6::Core) +QT_FEATURE_renameat2:INTERNAL=OFF +//Qt feature: resizehandler (from target Qt6::Widgets) +QT_FEATURE_resizehandler:INTERNAL=ON +//Qt feature: rpath (from target Qt6::Core) +QT_FEATURE_rpath:INTERNAL=OFF +//Qt feature: rubberband (from target Qt6::Widgets) +QT_FEATURE_rubberband:INTERNAL=ON +//Qt feature: scrollarea (from target Qt6::Widgets) +QT_FEATURE_scrollarea:INTERNAL=ON +//Qt feature: scrollbar (from target Qt6::Widgets) +QT_FEATURE_scrollbar:INTERNAL=ON +//Qt feature: scroller (from target Qt6::Widgets) +QT_FEATURE_scroller:INTERNAL=ON +//Qt feature: separate_debug_info (from target Qt6::Core) +QT_FEATURE_separate_debug_info:INTERNAL=ON +//Qt feature: sessionmanager (from target Qt6::Gui) +QT_FEATURE_sessionmanager:INTERNAL=ON +//Qt feature: settings (from target Qt6::Core) +QT_FEATURE_settings:INTERNAL=ON +//Qt feature: sha3_fast (from target Qt6::Core) +QT_FEATURE_sha3_fast:INTERNAL=ON +//Qt feature: shani (from target Qt6::Core) +QT_FEATURE_shani:INTERNAL=ON +//Qt feature: shared (from target Qt6::Core) +QT_FEATURE_shared:INTERNAL=ON +//Qt feature: sharedmemory (from target Qt6::Core) +QT_FEATURE_sharedmemory:INTERNAL=ON +//Qt feature: shortcut (from target Qt6::Core) +QT_FEATURE_shortcut:INTERNAL=ON +//Qt feature: signaling_nan (from target Qt6::Core) +QT_FEATURE_signaling_nan:INTERNAL=ON +//Qt feature: simulator_and_device (from target Qt6::Core) +QT_FEATURE_simulator_and_device:INTERNAL=OFF +//Qt feature: sizegrip (from target Qt6::Widgets) +QT_FEATURE_sizegrip:INTERNAL=ON +//Qt feature: slider (from target Qt6::Widgets) +QT_FEATURE_slider:INTERNAL=ON +//Qt feature: slog2 (from target Qt6::Core) +QT_FEATURE_slog2:INTERNAL=OFF +//Qt feature: sortfilterproxymodel (from target Qt6::Core) +QT_FEATURE_sortfilterproxymodel:INTERNAL=ON +//Qt feature: spinbox (from target Qt6::Widgets) +QT_FEATURE_spinbox:INTERNAL=ON +//Qt feature: splashscreen (from target Qt6::Widgets) +QT_FEATURE_splashscreen:INTERNAL=ON +//Qt feature: splitter (from target Qt6::Widgets) +QT_FEATURE_splitter:INTERNAL=ON +//Qt feature: sql (from target Qt6::Core) +QT_FEATURE_sql:INTERNAL=ON +//Qt feature: sse2 (from target Qt6::Core) +QT_FEATURE_sse2:INTERNAL=ON +//Qt feature: sse3 (from target Qt6::Core) +QT_FEATURE_sse3:INTERNAL=ON +//Qt feature: sse4_1 (from target Qt6::Core) +QT_FEATURE_sse4_1:INTERNAL=ON +//Qt feature: sse4_2 (from target Qt6::Core) +QT_FEATURE_sse4_2:INTERNAL=ON +//Qt feature: ssse3 (from target Qt6::Core) +QT_FEATURE_ssse3:INTERNAL=ON +//Qt feature: stack_protector_strong (from target Qt6::Core) +QT_FEATURE_stack_protector_strong:INTERNAL=OFF +//Qt feature: stackedwidget (from target Qt6::Widgets) +QT_FEATURE_stackedwidget:INTERNAL=ON +//Qt feature: standarditemmodel (from target Qt6::Gui) +QT_FEATURE_standarditemmodel:INTERNAL=ON +//Qt feature: static (from target Qt6::Core) +QT_FEATURE_static:INTERNAL=OFF +//Qt feature: statusbar (from target Qt6::Widgets) +QT_FEATURE_statusbar:INTERNAL=ON +//Qt feature: statustip (from target Qt6::Widgets) +QT_FEATURE_statustip:INTERNAL=ON +//Qt feature: std_atomic64 (from target Qt6::Core) +QT_FEATURE_std_atomic64:INTERNAL=ON +//Qt feature: stdlib_libcpp (from target Qt6::Core) +QT_FEATURE_stdlib_libcpp:INTERNAL=OFF +//Qt feature: stringlistmodel (from target Qt6::Core) +QT_FEATURE_stringlistmodel:INTERNAL=ON +//Qt feature: style_android (from target Qt6::Widgets) +QT_FEATURE_style_android:INTERNAL=OFF +//Qt feature: style_fusion (from target Qt6::Widgets) +QT_FEATURE_style_fusion:INTERNAL=ON +//Qt feature: style_mac (from target Qt6::Widgets) +QT_FEATURE_style_mac:INTERNAL=OFF +//Qt feature: style_stylesheet (from target Qt6::Widgets) +QT_FEATURE_style_stylesheet:INTERNAL=ON +//Qt feature: style_windows (from target Qt6::Widgets) +QT_FEATURE_style_windows:INTERNAL=ON +//Qt feature: style_windows11 (from target Qt6::Widgets) +QT_FEATURE_style_windows11:INTERNAL=ON +//Qt feature: style_windowsvista (from target Qt6::Widgets) +QT_FEATURE_style_windowsvista:INTERNAL=ON +//Qt feature: syntaxhighlighter (from target Qt6::Widgets) +QT_FEATURE_syntaxhighlighter:INTERNAL=ON +//Qt feature: syslog (from target Qt6::Core) +QT_FEATURE_syslog:INTERNAL=OFF +//Qt feature: system_doubleconversion (from target Qt6::Core) +QT_FEATURE_system_doubleconversion:INTERNAL=OFF +//Qt feature: system_freetype (from target Qt6::Gui) +QT_FEATURE_system_freetype:INTERNAL=OFF +//Qt feature: system_harfbuzz (from target Qt6::Gui) +QT_FEATURE_system_harfbuzz:INTERNAL=OFF +//Qt feature: system_jpeg (from target Qt6::Gui) +QT_FEATURE_system_jpeg:INTERNAL=OFF +//Qt feature: system_libb2 (from target Qt6::Core) +QT_FEATURE_system_libb2:INTERNAL=OFF +//Qt feature: system_pcre2 (from target Qt6::Core) +QT_FEATURE_system_pcre2:INTERNAL=OFF +//Qt feature: system_png (from target Qt6::Gui) +QT_FEATURE_system_png:INTERNAL=OFF +//Qt feature: system_textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_system_textmarkdownreader:INTERNAL=OFF +//Qt feature: system_xcb_xinput (from target Qt6::Gui) +QT_FEATURE_system_xcb_xinput:INTERNAL=OFF +//Qt feature: system_zlib (from target Qt6::Core) +QT_FEATURE_system_zlib:INTERNAL=OFF +//Qt feature: systemsemaphore (from target Qt6::Core) +QT_FEATURE_systemsemaphore:INTERNAL=ON +//Qt feature: systemtrayicon (from target Qt6::Gui) +QT_FEATURE_systemtrayicon:INTERNAL=ON +//Qt feature: sysv_sem (from target Qt6::Core) +QT_FEATURE_sysv_sem:INTERNAL=OFF +//Qt feature: sysv_shm (from target Qt6::Core) +QT_FEATURE_sysv_shm:INTERNAL=OFF +//Qt feature: tabbar (from target Qt6::Widgets) +QT_FEATURE_tabbar:INTERNAL=ON +//Qt feature: tabletevent (from target Qt6::Gui) +QT_FEATURE_tabletevent:INTERNAL=ON +//Qt feature: tableview (from target Qt6::Widgets) +QT_FEATURE_tableview:INTERNAL=ON +//Qt feature: tablewidget (from target Qt6::Widgets) +QT_FEATURE_tablewidget:INTERNAL=ON +//Qt feature: tabwidget (from target Qt6::Widgets) +QT_FEATURE_tabwidget:INTERNAL=ON +//Qt feature: temporaryfile (from target Qt6::Core) +QT_FEATURE_temporaryfile:INTERNAL=ON +//Qt feature: testlib (from target Qt6::Core) +QT_FEATURE_testlib:INTERNAL=ON +//Qt feature: textbrowser (from target Qt6::Widgets) +QT_FEATURE_textbrowser:INTERNAL=ON +//Qt feature: textdate (from target Qt6::Core) +QT_FEATURE_textdate:INTERNAL=ON +//Qt feature: textedit (from target Qt6::Widgets) +QT_FEATURE_textedit:INTERNAL=ON +//Qt feature: texthtmlparser (from target Qt6::Gui) +QT_FEATURE_texthtmlparser:INTERNAL=ON +//Qt feature: textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_textmarkdownreader:INTERNAL=ON +//Qt feature: textmarkdownwriter (from target Qt6::Gui) +QT_FEATURE_textmarkdownwriter:INTERNAL=ON +//Qt feature: textodfwriter (from target Qt6::Gui) +QT_FEATURE_textodfwriter:INTERNAL=ON +//Qt feature: thread (from target Qt6::Core) +QT_FEATURE_thread:INTERNAL=ON +//Qt feature: timezone (from target Qt6::Core) +QT_FEATURE_timezone:INTERNAL=ON +//Qt feature: toolbar (from target Qt6::Widgets) +QT_FEATURE_toolbar:INTERNAL=ON +//Qt feature: toolbox (from target Qt6::Widgets) +QT_FEATURE_toolbox:INTERNAL=ON +//Qt feature: toolbutton (from target Qt6::Widgets) +QT_FEATURE_toolbutton:INTERNAL=ON +//Qt feature: tooltip (from target Qt6::Widgets) +QT_FEATURE_tooltip:INTERNAL=ON +//Qt feature: translation (from target Qt6::Core) +QT_FEATURE_translation:INTERNAL=ON +//Qt feature: transposeproxymodel (from target Qt6::Core) +QT_FEATURE_transposeproxymodel:INTERNAL=ON +//Qt feature: treeview (from target Qt6::Widgets) +QT_FEATURE_treeview:INTERNAL=ON +//Qt feature: treewidget (from target Qt6::Widgets) +QT_FEATURE_treewidget:INTERNAL=ON +//Qt feature: tslib (from target Qt6::Gui) +QT_FEATURE_tslib:INTERNAL=OFF +//Qt feature: tuiotouch (from target Qt6::Gui) +QT_FEATURE_tuiotouch:INTERNAL=ON +//Qt feature: undocommand (from target Qt6::Gui) +QT_FEATURE_undocommand:INTERNAL=ON +//Qt feature: undogroup (from target Qt6::Gui) +QT_FEATURE_undogroup:INTERNAL=ON +//Qt feature: undostack (from target Qt6::Gui) +QT_FEATURE_undostack:INTERNAL=ON +//Qt feature: undoview (from target Qt6::Widgets) +QT_FEATURE_undoview:INTERNAL=ON +//Qt feature: use_bfd_linker (from target Qt6::Core) +QT_FEATURE_use_bfd_linker:INTERNAL=OFF +//Qt feature: use_gold_linker (from target Qt6::Core) +QT_FEATURE_use_gold_linker:INTERNAL=OFF +//Qt feature: use_lld_linker (from target Qt6::Core) +QT_FEATURE_use_lld_linker:INTERNAL=OFF +//Qt feature: use_mold_linker (from target Qt6::Core) +QT_FEATURE_use_mold_linker:INTERNAL=OFF +//Qt feature: vaes (from target Qt6::Core) +QT_FEATURE_vaes:INTERNAL=ON +//Qt feature: validator (from target Qt6::Gui) +QT_FEATURE_validator:INTERNAL=ON +//Qt feature: vkgen (from target Qt6::Gui) +QT_FEATURE_vkgen:INTERNAL=ON +//Qt feature: vkkhrdisplay (from target Qt6::Gui) +QT_FEATURE_vkkhrdisplay:INTERNAL=OFF +//Qt feature: vnc (from target Qt6::Gui) +QT_FEATURE_vnc:INTERNAL=OFF +//Qt feature: vsp2 (from target Qt6::Gui) +QT_FEATURE_vsp2:INTERNAL=OFF +//Qt feature: vulkan (from target Qt6::Gui) +QT_FEATURE_vulkan:INTERNAL=ON +//Qt feature: wasm_exceptions (from target Qt6::Core) +QT_FEATURE_wasm_exceptions:INTERNAL=OFF +//Qt feature: wasm_simd128 (from target Qt6::Core) +QT_FEATURE_wasm_simd128:INTERNAL=OFF +//Qt feature: wayland (from target Qt6::Gui) +QT_FEATURE_wayland:INTERNAL=OFF +//Qt feature: whatsthis (from target Qt6::Gui) +QT_FEATURE_whatsthis:INTERNAL=ON +//Qt feature: wheelevent (from target Qt6::Gui) +QT_FEATURE_wheelevent:INTERNAL=ON +//Qt feature: widgets (from target Qt6::Core) +QT_FEATURE_widgets:INTERNAL=ON +//Qt feature: widgettextcontrol (from target Qt6::Widgets) +QT_FEATURE_widgettextcontrol:INTERNAL=ON +//Qt feature: wizard (from target Qt6::Widgets) +QT_FEATURE_wizard:INTERNAL=ON +//Qt feature: x86intrin (from target Qt6::Core) +QT_FEATURE_x86intrin:INTERNAL=ON +//Qt feature: xcb (from target Qt6::Gui) +QT_FEATURE_xcb:INTERNAL=OFF +//Qt feature: xcb_egl_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_egl_plugin:INTERNAL=OFF +//Qt feature: xcb_glx (from target Qt6::Gui) +QT_FEATURE_xcb_glx:INTERNAL=OFF +//Qt feature: xcb_glx_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_glx_plugin:INTERNAL=OFF +//Qt feature: xcb_native_painting (from target Qt6::Gui) +QT_FEATURE_xcb_native_painting:INTERNAL=OFF +//Qt feature: xcb_sm (from target Qt6::Gui) +QT_FEATURE_xcb_sm:INTERNAL=OFF +//Qt feature: xcb_xlib (from target Qt6::Gui) +QT_FEATURE_xcb_xlib:INTERNAL=OFF +//Qt feature: xkbcommon (from target Qt6::Gui) +QT_FEATURE_xkbcommon:INTERNAL=OFF +//Qt feature: xkbcommon_x11 (from target Qt6::Gui) +QT_FEATURE_xkbcommon_x11:INTERNAL=OFF +//Qt feature: xlib (from target Qt6::Gui) +QT_FEATURE_xlib:INTERNAL=OFF +//Qt feature: xml (from target Qt6::Core) +QT_FEATURE_xml:INTERNAL=ON +//Qt feature: xmlstream (from target Qt6::Core) +QT_FEATURE_xmlstream:INTERNAL=ON +//Qt feature: xmlstreamreader (from target Qt6::Core) +QT_FEATURE_xmlstreamreader:INTERNAL=ON +//Qt feature: xmlstreamwriter (from target Qt6::Core) +QT_FEATURE_xmlstreamwriter:INTERNAL=ON +//Qt feature: xrender (from target Qt6::Gui) +QT_FEATURE_xrender:INTERNAL=OFF +//Qt feature: zstd (from target Qt6::Core) +QT_FEATURE_zstd:INTERNAL=OFF +//ADVANCED property for variable: Vulkan_GLSLANG_VALIDATOR_EXECUTABLE +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_GLSLC_EXECUTABLE +Vulkan_GLSLC_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_INCLUDE_DIR +Vulkan_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_LIBRARY +Vulkan_LIBRARY-ADVANCED:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/app +_Qt6_LINGUIST_TOOLS_DIR:INTERNAL=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools + diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeCache.txt.prev b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeCache.txt.prev new file mode 100644 index 0000000..58995e9 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeCache.txt.prev @@ -0,0 +1,1287 @@ +# This is the CMakeCache file. +# For build in directory: a:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug +# It was generated by CMake: C:/Qt/Tools/CMake_64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/ar.exe + +//No help, variable specified on the command line. +CMAKE_BUILD_TYPE:STRING=Debug + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=1 + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=C:/Qt/Tools/mingw1120_64/bin/g++.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//No help, variable specified on the command line. +CMAKE_CXX_FLAGS_INIT:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +CMAKE_CXX_OUTPUT_EXTENSION:STRING=.obj + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//No help, variable specified on the command line. +CMAKE_C_COMPILER:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/gcc.exe + +CMAKE_C_OUTPUT_EXTENSION:STRING= + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/dlltool.exe + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/pkgRedirects + +//No help, variable specified on the command line. +CMAKE_GENERATOR:STRING=Ninja + +//Convert GNU import libraries to MS format (requires Visual Studio) +CMAKE_GNUtoMS:BOOL=OFF + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/app + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Qt/Tools/Ninja/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/objdump.exe + +//No help, variable specified on the command line. +CMAKE_PREFIX_PATH:PATH=C:/Qt/6.7.0/mingw_64 + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//No help, variable specified on the command line. +CMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=app + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/ranlib.exe + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/windres.exe + +//Flags for Windows Resource Compiler during all build types. +CMAKE_RC_FLAGS:STRING= + +//Flags for Windows Resource Compiler during DEBUG builds. +CMAKE_RC_FLAGS_DEBUG:STRING= + +//Flags for Windows Resource Compiler during MINSIZEREL builds. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during RELEASE builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during RELWITHDEBINFO builds. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/Qt/Tools/mingw1120_64/bin/strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//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. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Additional directories where find(Qt6 ...) host Qt components +// are searched +QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH:STRING= + +//Additional directories where find(Qt6 ...) components are searched +QT_ADDITIONAL_PACKAGES_PREFIX_PATH:STRING= + +//Skip Qt Creator's package manager auto-setup +QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP:BOOL=OFF + +//The directory containing a CMake configuration file for QT. +QT_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6 + +//No help, variable specified on the command line. +QT_QMAKE_EXECUTABLE:FILEPATH=C:/Qt/6.7.0/mingw_64/bin/qmake.exe + +//The directory containing a CMake configuration file for Qt6CoreTools. +Qt6CoreTools_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools + +//The directory containing a CMake configuration file for Qt6Core. +Qt6Core_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core + +//The directory containing a CMake configuration file for Qt6EntryPointPrivate. +Qt6EntryPointPrivate_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate + +//The directory containing a CMake configuration file for Qt6GuiTools. +Qt6GuiTools_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools + +//The directory containing a CMake configuration file for Qt6Gui. +Qt6Gui_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui + +//The directory containing a CMake configuration file for Qt6LinguistTools. +Qt6LinguistTools_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools + +//The directory containing a CMake configuration file for Qt6WidgetsTools. +Qt6WidgetsTools_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools + +//The directory containing a CMake configuration file for Qt6Widgets. +Qt6Widgets_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets + +//The directory containing a CMake configuration file for Qt6ZlibPrivate. +Qt6ZlibPrivate_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate + +//The directory containing a CMake configuration file for Qt6. +Qt6_DIR:PATH=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6 + +//Path to a program. +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE:FILEPATH=C:/VulkanSDK/1.3.283.0/Bin/glslangValidator.exe + +//Path to a program. +Vulkan_GLSLC_EXECUTABLE:FILEPATH=C:/VulkanSDK/1.3.283.0/Bin/glslc.exe + +//Path to a file. +Vulkan_INCLUDE_DIR:PATH=C:/VulkanSDK/1.3.283.0/Include + +//Path to a library. +Vulkan_LIBRARY:FILEPATH=C:/VulkanSDK/1.3.283.0/Lib/vulkan-1.lib + +//Path to a program. +WINDEPLOYQT_EXECUTABLE:FILEPATH=C:/Qt/6.7.0/mingw_64/bin/windeployqt.exe + +//Value Computed by CMake +app_BINARY_DIR:STATIC=A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug + +//Value Computed by CMake +app_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +app_SOURCE_DIR:STATIC=A:/workspace/special-broccoli/app + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=a:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=27 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=7 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Qt/Tools/CMake_64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Qt/Tools/CMake_64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Qt/Tools/CMake_64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/Qt/Tools/CMake_64/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=A:/workspace/special-broccoli/app +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Qt/Tools/CMake_64/share/cmake-3.27 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//Details about finding WrapAtomic +FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic:INTERNAL=[1][v()] +//Details about finding WrapVulkanHeaders +FIND_PACKAGE_MESSAGE_DETAILS_WrapVulkanHeaders:INTERNAL=[C:/VulkanSDK/1.3.283.0/Include][v()] +//Test HAVE_STDATOMIC +HAVE_STDATOMIC:INTERNAL=1 +//Qt feature: abstractbutton (from target Qt6::Widgets) +QT_FEATURE_abstractbutton:INTERNAL=ON +//Qt feature: abstractslider (from target Qt6::Widgets) +QT_FEATURE_abstractslider:INTERNAL=ON +//Qt feature: accessibility (from target Qt6::Gui) +QT_FEATURE_accessibility:INTERNAL=ON +//Qt feature: accessibility_atspi_bridge (from target Qt6::Gui) +QT_FEATURE_accessibility_atspi_bridge:INTERNAL=OFF +//Qt feature: action (from target Qt6::Gui) +QT_FEATURE_action:INTERNAL=ON +//Qt feature: aesni (from target Qt6::Core) +QT_FEATURE_aesni:INTERNAL=ON +//Qt feature: alloca (from target Qt6::Core) +QT_FEATURE_alloca:INTERNAL=ON +//Qt feature: alloca_h (from target Qt6::Core) +QT_FEATURE_alloca_h:INTERNAL=OFF +//Qt feature: alloca_malloc_h (from target Qt6::Core) +QT_FEATURE_alloca_malloc_h:INTERNAL=ON +//Qt feature: android_style_assets (from target Qt6::Core) +QT_FEATURE_android_style_assets:INTERNAL=OFF +//Qt feature: animation (from target Qt6::Core) +QT_FEATURE_animation:INTERNAL=ON +//Qt feature: appstore_compliant (from target Qt6::Core) +QT_FEATURE_appstore_compliant:INTERNAL=OFF +//Qt feature: arm_crc32 (from target Qt6::Core) +QT_FEATURE_arm_crc32:INTERNAL=OFF +//Qt feature: arm_crypto (from target Qt6::Core) +QT_FEATURE_arm_crypto:INTERNAL=OFF +//Qt feature: avx (from target Qt6::Core) +QT_FEATURE_avx:INTERNAL=ON +//Qt feature: avx2 (from target Qt6::Core) +QT_FEATURE_avx2:INTERNAL=ON +//Qt feature: avx512bw (from target Qt6::Core) +QT_FEATURE_avx512bw:INTERNAL=ON +//Qt feature: avx512cd (from target Qt6::Core) +QT_FEATURE_avx512cd:INTERNAL=ON +//Qt feature: avx512dq (from target Qt6::Core) +QT_FEATURE_avx512dq:INTERNAL=ON +//Qt feature: avx512er (from target Qt6::Core) +QT_FEATURE_avx512er:INTERNAL=ON +//Qt feature: avx512f (from target Qt6::Core) +QT_FEATURE_avx512f:INTERNAL=ON +//Qt feature: avx512ifma (from target Qt6::Core) +QT_FEATURE_avx512ifma:INTERNAL=ON +//Qt feature: avx512pf (from target Qt6::Core) +QT_FEATURE_avx512pf:INTERNAL=ON +//Qt feature: avx512vbmi (from target Qt6::Core) +QT_FEATURE_avx512vbmi:INTERNAL=ON +//Qt feature: avx512vbmi2 (from target Qt6::Core) +QT_FEATURE_avx512vbmi2:INTERNAL=ON +//Qt feature: avx512vl (from target Qt6::Core) +QT_FEATURE_avx512vl:INTERNAL=ON +//Qt feature: backtrace (from target Qt6::Core) +QT_FEATURE_backtrace:INTERNAL=OFF +//Qt feature: buttongroup (from target Qt6::Widgets) +QT_FEATURE_buttongroup:INTERNAL=ON +//Qt feature: calendarwidget (from target Qt6::Widgets) +QT_FEATURE_calendarwidget:INTERNAL=ON +//Qt feature: cborstreamreader (from target Qt6::Core) +QT_FEATURE_cborstreamreader:INTERNAL=ON +//Qt feature: cborstreamwriter (from target Qt6::Core) +QT_FEATURE_cborstreamwriter:INTERNAL=ON +//Qt feature: checkbox (from target Qt6::Widgets) +QT_FEATURE_checkbox:INTERNAL=ON +//Qt feature: clipboard (from target Qt6::Gui) +QT_FEATURE_clipboard:INTERNAL=ON +//Qt feature: clock_gettime (from target Qt6::Core) +QT_FEATURE_clock_gettime:INTERNAL=OFF +//Qt feature: clock_monotonic (from target Qt6::Core) +QT_FEATURE_clock_monotonic:INTERNAL=OFF +//Qt feature: close_range (from target Qt6::Core) +QT_FEATURE_close_range:INTERNAL=OFF +//Qt feature: colordialog (from target Qt6::Widgets) +QT_FEATURE_colordialog:INTERNAL=ON +//Qt feature: colornames (from target Qt6::Gui) +QT_FEATURE_colornames:INTERNAL=ON +//Qt feature: columnview (from target Qt6::Widgets) +QT_FEATURE_columnview:INTERNAL=ON +//Qt feature: combobox (from target Qt6::Widgets) +QT_FEATURE_combobox:INTERNAL=ON +//Qt feature: commandlineparser (from target Qt6::Core) +QT_FEATURE_commandlineparser:INTERNAL=ON +//Qt feature: commandlinkbutton (from target Qt6::Widgets) +QT_FEATURE_commandlinkbutton:INTERNAL=ON +//Qt feature: completer (from target Qt6::Widgets) +QT_FEATURE_completer:INTERNAL=ON +//Qt feature: concatenatetablesproxymodel (from target Qt6::Core) +QT_FEATURE_concatenatetablesproxymodel:INTERNAL=ON +//Qt feature: concurrent (from target Qt6::Core) +QT_FEATURE_concurrent:INTERNAL=ON +//Qt feature: contextmenu (from target Qt6::Widgets) +QT_FEATURE_contextmenu:INTERNAL=ON +//Qt feature: cpp_winrt (from target Qt6::Core) +QT_FEATURE_cpp_winrt:INTERNAL=OFF +//Qt feature: cross_compile (from target Qt6::Core) +QT_FEATURE_cross_compile:INTERNAL=OFF +//Qt feature: cssparser (from target Qt6::Gui) +QT_FEATURE_cssparser:INTERNAL=ON +//Qt feature: ctf (from target Qt6::Core) +QT_FEATURE_ctf:INTERNAL=OFF +//Qt feature: cursor (from target Qt6::Gui) +QT_FEATURE_cursor:INTERNAL=ON +//Qt feature: cxx11_future (from target Qt6::Core) +QT_FEATURE_cxx11_future:INTERNAL=ON +//Qt feature: cxx17_filesystem (from target Qt6::Core) +QT_FEATURE_cxx17_filesystem:INTERNAL=ON +//Qt feature: cxx20 (from target Qt6::Core) +QT_FEATURE_cxx20:INTERNAL=OFF +//Qt feature: cxx2a (from target Qt6::Core) +QT_FEATURE_cxx2a:INTERNAL=OFF +//Qt feature: cxx2b (from target Qt6::Core) +QT_FEATURE_cxx2b:INTERNAL=OFF +//Qt feature: datawidgetmapper (from target Qt6::Widgets) +QT_FEATURE_datawidgetmapper:INTERNAL=ON +//Qt feature: datestring (from target Qt6::Core) +QT_FEATURE_datestring:INTERNAL=ON +//Qt feature: datetimeedit (from target Qt6::Widgets) +QT_FEATURE_datetimeedit:INTERNAL=ON +//Qt feature: datetimeparser (from target Qt6::Core) +QT_FEATURE_datetimeparser:INTERNAL=ON +//Qt feature: dbus (from target Qt6::Core) +QT_FEATURE_dbus:INTERNAL=ON +//Qt feature: dbus_linked (from target Qt6::Core) +QT_FEATURE_dbus_linked:INTERNAL=OFF +//Qt feature: debug (from target Qt6::Core) +QT_FEATURE_debug:INTERNAL=OFF +//Qt feature: debug_and_release (from target Qt6::Core) +QT_FEATURE_debug_and_release:INTERNAL=OFF +//Qt feature: desktopservices (from target Qt6::Gui) +QT_FEATURE_desktopservices:INTERNAL=ON +//Qt feature: developer_build (from target Qt6::Core) +QT_FEATURE_developer_build:INTERNAL=OFF +//Qt feature: dial (from target Qt6::Widgets) +QT_FEATURE_dial:INTERNAL=ON +//Qt feature: dialog (from target Qt6::Widgets) +QT_FEATURE_dialog:INTERNAL=ON +//Qt feature: dialogbuttonbox (from target Qt6::Widgets) +QT_FEATURE_dialogbuttonbox:INTERNAL=ON +//Qt feature: direct2d (from target Qt6::Gui) +QT_FEATURE_direct2d:INTERNAL=ON +//Qt feature: direct2d1_1 (from target Qt6::Gui) +QT_FEATURE_direct2d1_1:INTERNAL=ON +//Qt feature: directfb (from target Qt6::Gui) +QT_FEATURE_directfb:INTERNAL=OFF +//Qt feature: directwrite (from target Qt6::Gui) +QT_FEATURE_directwrite:INTERNAL=ON +//Qt feature: directwrite3 (from target Qt6::Gui) +QT_FEATURE_directwrite3:INTERNAL=ON +//Qt feature: dladdr (from target Qt6::Core) +QT_FEATURE_dladdr:INTERNAL=OFF +//Qt feature: dlopen (from target Qt6::Core) +QT_FEATURE_dlopen:INTERNAL=OFF +//Qt feature: dockwidget (from target Qt6::Widgets) +QT_FEATURE_dockwidget:INTERNAL=ON +//Qt feature: doubleconversion (from target Qt6::Core) +QT_FEATURE_doubleconversion:INTERNAL=ON +//Qt feature: draganddrop (from target Qt6::Gui) +QT_FEATURE_draganddrop:INTERNAL=ON +//Qt feature: drm_atomic (from target Qt6::Gui) +QT_FEATURE_drm_atomic:INTERNAL=OFF +//Qt feature: dynamicgl (from target Qt6::Gui) +QT_FEATURE_dynamicgl:INTERNAL=ON +//Qt feature: easingcurve (from target Qt6::Core) +QT_FEATURE_easingcurve:INTERNAL=ON +//Qt feature: effects (from target Qt6::Widgets) +QT_FEATURE_effects:INTERNAL=ON +//Qt feature: egl (from target Qt6::Gui) +QT_FEATURE_egl:INTERNAL=OFF +//Qt feature: egl_x11 (from target Qt6::Gui) +QT_FEATURE_egl_x11:INTERNAL=OFF +//Qt feature: eglfs (from target Qt6::Gui) +QT_FEATURE_eglfs:INTERNAL=OFF +//Qt feature: eglfs_brcm (from target Qt6::Gui) +QT_FEATURE_eglfs_brcm:INTERNAL=OFF +//Qt feature: eglfs_egldevice (from target Qt6::Gui) +QT_FEATURE_eglfs_egldevice:INTERNAL=OFF +//Qt feature: eglfs_gbm (from target Qt6::Gui) +QT_FEATURE_eglfs_gbm:INTERNAL=OFF +//Qt feature: eglfs_mali (from target Qt6::Gui) +QT_FEATURE_eglfs_mali:INTERNAL=OFF +//Qt feature: eglfs_openwfd (from target Qt6::Gui) +QT_FEATURE_eglfs_openwfd:INTERNAL=OFF +//Qt feature: eglfs_rcar (from target Qt6::Gui) +QT_FEATURE_eglfs_rcar:INTERNAL=OFF +//Qt feature: eglfs_viv (from target Qt6::Gui) +QT_FEATURE_eglfs_viv:INTERNAL=OFF +//Qt feature: eglfs_viv_wl (from target Qt6::Gui) +QT_FEATURE_eglfs_viv_wl:INTERNAL=OFF +//Qt feature: eglfs_vsp2 (from target Qt6::Gui) +QT_FEATURE_eglfs_vsp2:INTERNAL=OFF +//Qt feature: eglfs_x11 (from target Qt6::Gui) +QT_FEATURE_eglfs_x11:INTERNAL=OFF +//Qt feature: errormessage (from target Qt6::Widgets) +QT_FEATURE_errormessage:INTERNAL=ON +//Qt feature: etw (from target Qt6::Core) +QT_FEATURE_etw:INTERNAL=OFF +//Qt feature: evdev (from target Qt6::Gui) +QT_FEATURE_evdev:INTERNAL=OFF +//Qt feature: f16c (from target Qt6::Core) +QT_FEATURE_f16c:INTERNAL=ON +//Qt feature: filedialog (from target Qt6::Widgets) +QT_FEATURE_filedialog:INTERNAL=ON +//Qt feature: filesystemiterator (from target Qt6::Core) +QT_FEATURE_filesystemiterator:INTERNAL=ON +//Qt feature: filesystemmodel (from target Qt6::Gui) +QT_FEATURE_filesystemmodel:INTERNAL=ON +//Qt feature: filesystemwatcher (from target Qt6::Core) +QT_FEATURE_filesystemwatcher:INTERNAL=ON +//Qt feature: fontcombobox (from target Qt6::Widgets) +QT_FEATURE_fontcombobox:INTERNAL=ON +//Qt feature: fontconfig (from target Qt6::Gui) +QT_FEATURE_fontconfig:INTERNAL=OFF +//Qt feature: fontdialog (from target Qt6::Widgets) +QT_FEATURE_fontdialog:INTERNAL=ON +//Qt feature: force_asserts (from target Qt6::Core) +QT_FEATURE_force_asserts:INTERNAL=OFF +//Qt feature: force_debug_info (from target Qt6::Core) +QT_FEATURE_force_debug_info:INTERNAL=ON +//Qt feature: forkfd_pidfd (from target Qt6::Core) +QT_FEATURE_forkfd_pidfd:INTERNAL=OFF +//Qt feature: formlayout (from target Qt6::Widgets) +QT_FEATURE_formlayout:INTERNAL=ON +//Qt feature: framework (from target Qt6::Core) +QT_FEATURE_framework:INTERNAL=OFF +//Qt feature: freetype (from target Qt6::Gui) +QT_FEATURE_freetype:INTERNAL=ON +//Qt feature: fscompleter (from target Qt6::Widgets) +QT_FEATURE_fscompleter:INTERNAL=ON +//Qt feature: futimens (from target Qt6::Core) +QT_FEATURE_futimens:INTERNAL=OFF +//Qt feature: future (from target Qt6::Core) +QT_FEATURE_future:INTERNAL=ON +//Qt feature: gc_binaries (from target Qt6::Core) +QT_FEATURE_gc_binaries:INTERNAL=OFF +//Qt feature: gestures (from target Qt6::Core) +QT_FEATURE_gestures:INTERNAL=ON +//Qt feature: getauxval (from target Qt6::Core) +QT_FEATURE_getauxval:INTERNAL=OFF +//Qt feature: getentropy (from target Qt6::Core) +QT_FEATURE_getentropy:INTERNAL=OFF +//Qt feature: gif (from target Qt6::Gui) +QT_FEATURE_gif:INTERNAL=ON +//Qt feature: glib (from target Qt6::Core) +QT_FEATURE_glib:INTERNAL=OFF +//Qt feature: graphicseffect (from target Qt6::Widgets) +QT_FEATURE_graphicseffect:INTERNAL=ON +//Qt feature: graphicsframecapture (from target Qt6::Gui) +QT_FEATURE_graphicsframecapture:INTERNAL=OFF +//Qt feature: graphicsview (from target Qt6::Widgets) +QT_FEATURE_graphicsview:INTERNAL=ON +//Qt feature: groupbox (from target Qt6::Widgets) +QT_FEATURE_groupbox:INTERNAL=ON +//Qt feature: gtk3 (from target Qt6::Widgets) +QT_FEATURE_gtk3:INTERNAL=OFF +//Qt feature: gui (from target Qt6::Core) +QT_FEATURE_gui:INTERNAL=ON +//Qt feature: harfbuzz (from target Qt6::Gui) +QT_FEATURE_harfbuzz:INTERNAL=ON +//Qt feature: highdpiscaling (from target Qt6::Gui) +QT_FEATURE_highdpiscaling:INTERNAL=ON +//Qt feature: hijricalendar (from target Qt6::Core) +QT_FEATURE_hijricalendar:INTERNAL=ON +//Qt feature: ico (from target Qt6::Gui) +QT_FEATURE_ico:INTERNAL=ON +//Qt feature: icu (from target Qt6::Core) +QT_FEATURE_icu:INTERNAL=OFF +//Qt feature: identityproxymodel (from target Qt6::Core) +QT_FEATURE_identityproxymodel:INTERNAL=ON +//Qt feature: im (from target Qt6::Gui) +QT_FEATURE_im:INTERNAL=ON +//Qt feature: image_heuristic_mask (from target Qt6::Gui) +QT_FEATURE_image_heuristic_mask:INTERNAL=ON +//Qt feature: image_text (from target Qt6::Gui) +QT_FEATURE_image_text:INTERNAL=ON +//Qt feature: imageformat_bmp (from target Qt6::Gui) +QT_FEATURE_imageformat_bmp:INTERNAL=ON +//Qt feature: imageformat_jpeg (from target Qt6::Gui) +QT_FEATURE_imageformat_jpeg:INTERNAL=ON +//Qt feature: imageformat_png (from target Qt6::Gui) +QT_FEATURE_imageformat_png:INTERNAL=ON +//Qt feature: imageformat_ppm (from target Qt6::Gui) +QT_FEATURE_imageformat_ppm:INTERNAL=ON +//Qt feature: imageformat_xbm (from target Qt6::Gui) +QT_FEATURE_imageformat_xbm:INTERNAL=ON +//Qt feature: imageformat_xpm (from target Qt6::Gui) +QT_FEATURE_imageformat_xpm:INTERNAL=ON +//Qt feature: imageformatplugin (from target Qt6::Gui) +QT_FEATURE_imageformatplugin:INTERNAL=ON +//Qt feature: imageio_text_loading (from target Qt6::Gui) +QT_FEATURE_imageio_text_loading:INTERNAL=ON +//Qt feature: inotify (from target Qt6::Core) +QT_FEATURE_inotify:INTERNAL=OFF +//Qt feature: inputdialog (from target Qt6::Widgets) +QT_FEATURE_inputdialog:INTERNAL=ON +//Qt feature: integrityfb (from target Qt6::Gui) +QT_FEATURE_integrityfb:INTERNAL=OFF +//Qt feature: integrityhid (from target Qt6::Gui) +QT_FEATURE_integrityhid:INTERNAL=OFF +//Qt feature: intelcet (from target Qt6::Core) +QT_FEATURE_intelcet:INTERNAL=OFF +//Qt feature: islamiccivilcalendar (from target Qt6::Core) +QT_FEATURE_islamiccivilcalendar:INTERNAL=ON +//Qt feature: itemmodel (from target Qt6::Core) +QT_FEATURE_itemmodel:INTERNAL=ON +//Qt feature: itemviews (from target Qt6::Widgets) +QT_FEATURE_itemviews:INTERNAL=ON +//Qt feature: jalalicalendar (from target Qt6::Core) +QT_FEATURE_jalalicalendar:INTERNAL=ON +//Qt feature: journald (from target Qt6::Core) +QT_FEATURE_journald:INTERNAL=OFF +//Qt feature: jpeg (from target Qt6::Gui) +QT_FEATURE_jpeg:INTERNAL=ON +//Qt feature: keysequenceedit (from target Qt6::Widgets) +QT_FEATURE_keysequenceedit:INTERNAL=ON +//Qt feature: kms (from target Qt6::Gui) +QT_FEATURE_kms:INTERNAL=OFF +//Qt feature: label (from target Qt6::Widgets) +QT_FEATURE_label:INTERNAL=ON +//Qt feature: largefile (from target Qt6::Core) +QT_FEATURE_largefile:INTERNAL=ON +//Qt feature: lcdnumber (from target Qt6::Widgets) +QT_FEATURE_lcdnumber:INTERNAL=ON +//Qt feature: libinput (from target Qt6::Gui) +QT_FEATURE_libinput:INTERNAL=OFF +//Qt feature: libinput_axis_api (from target Qt6::Gui) +QT_FEATURE_libinput_axis_api:INTERNAL=OFF +//Qt feature: libinput_hires_wheel_support (from target Qt6::Gui) +QT_FEATURE_libinput_hires_wheel_support:INTERNAL=OFF +//Qt feature: library (from target Qt6::Core) +QT_FEATURE_library:INTERNAL=ON +//Qt feature: libudev (from target Qt6::Core) +QT_FEATURE_libudev:INTERNAL=OFF +//Qt feature: lineedit (from target Qt6::Widgets) +QT_FEATURE_lineedit:INTERNAL=ON +//Qt feature: linkat (from target Qt6::Core) +QT_FEATURE_linkat:INTERNAL=OFF +//Qt feature: linuxfb (from target Qt6::Gui) +QT_FEATURE_linuxfb:INTERNAL=OFF +//Qt feature: listview (from target Qt6::Widgets) +QT_FEATURE_listview:INTERNAL=ON +//Qt feature: listwidget (from target Qt6::Widgets) +QT_FEATURE_listwidget:INTERNAL=ON +//Qt feature: lttng (from target Qt6::Core) +QT_FEATURE_lttng:INTERNAL=OFF +//Qt feature: mainwindow (from target Qt6::Widgets) +QT_FEATURE_mainwindow:INTERNAL=ON +//Qt feature: mdiarea (from target Qt6::Widgets) +QT_FEATURE_mdiarea:INTERNAL=ON +//Qt feature: menu (from target Qt6::Widgets) +QT_FEATURE_menu:INTERNAL=ON +//Qt feature: menubar (from target Qt6::Widgets) +QT_FEATURE_menubar:INTERNAL=ON +//Qt feature: messagebox (from target Qt6::Widgets) +QT_FEATURE_messagebox:INTERNAL=ON +//Qt feature: mimetype (from target Qt6::Core) +QT_FEATURE_mimetype:INTERNAL=ON +//Qt feature: mimetype_database (from target Qt6::Core) +QT_FEATURE_mimetype_database:INTERNAL=ON +//Qt feature: mips_dsp (from target Qt6::Core) +QT_FEATURE_mips_dsp:INTERNAL=OFF +//Qt feature: mips_dspr2 (from target Qt6::Core) +QT_FEATURE_mips_dspr2:INTERNAL=OFF +//Qt feature: movie (from target Qt6::Gui) +QT_FEATURE_movie:INTERNAL=ON +//Qt feature: mtdev (from target Qt6::Gui) +QT_FEATURE_mtdev:INTERNAL=OFF +//Qt feature: multiprocess (from target Qt6::Gui) +QT_FEATURE_multiprocess:INTERNAL=ON +//Qt feature: neon (from target Qt6::Core) +QT_FEATURE_neon:INTERNAL=OFF +//Qt feature: network (from target Qt6::Core) +QT_FEATURE_network:INTERNAL=ON +//Qt feature: no_direct_extern_access (from target Qt6::Core) +QT_FEATURE_no_direct_extern_access:INTERNAL=OFF +//Qt feature: no_pkg_config (from target Qt6::Core) +QT_FEATURE_no_pkg_config:INTERNAL=ON +//Qt feature: opengl (from target Qt6::Gui) +QT_FEATURE_opengl:INTERNAL=ON +//Qt feature: opengles2 (from target Qt6::Gui) +QT_FEATURE_opengles2:INTERNAL=OFF +//Qt feature: opengles3 (from target Qt6::Gui) +QT_FEATURE_opengles3:INTERNAL=OFF +//Qt feature: opengles31 (from target Qt6::Gui) +QT_FEATURE_opengles31:INTERNAL=OFF +//Qt feature: opengles32 (from target Qt6::Gui) +QT_FEATURE_opengles32:INTERNAL=OFF +//Qt feature: openssl (from target Qt6::Core) +QT_FEATURE_openssl:INTERNAL=ON +//Qt feature: openssl_hash (from target Qt6::Core) +QT_FEATURE_openssl_hash:INTERNAL=OFF +//Qt feature: openssl_linked (from target Qt6::Core) +QT_FEATURE_openssl_linked:INTERNAL=OFF +//Qt feature: opensslv11 (from target Qt6::Core) +QT_FEATURE_opensslv11:INTERNAL=OFF +//Qt feature: opensslv30 (from target Qt6::Core) +QT_FEATURE_opensslv30:INTERNAL=ON +//Qt feature: openvg (from target Qt6::Gui) +QT_FEATURE_openvg:INTERNAL=OFF +//Qt feature: pcre2 (from target Qt6::Core) +QT_FEATURE_pcre2:INTERNAL=ON +//Qt feature: pdf (from target Qt6::Gui) +QT_FEATURE_pdf:INTERNAL=ON +//Qt feature: permissions (from target Qt6::Core) +QT_FEATURE_permissions:INTERNAL=ON +//Qt feature: picture (from target Qt6::Gui) +QT_FEATURE_picture:INTERNAL=ON +//Qt feature: pkg_config (from target Qt6::Core) +QT_FEATURE_pkg_config:INTERNAL=OFF +//Qt feature: plugin_manifest (from target Qt6::Core) +QT_FEATURE_plugin_manifest:INTERNAL=ON +//Qt feature: png (from target Qt6::Gui) +QT_FEATURE_png:INTERNAL=ON +//Qt feature: poll_exit_on_error (from target Qt6::Core) +QT_FEATURE_poll_exit_on_error:INTERNAL=OFF +//Qt feature: poll_poll (from target Qt6::Core) +QT_FEATURE_poll_poll:INTERNAL=OFF +//Qt feature: poll_pollts (from target Qt6::Core) +QT_FEATURE_poll_pollts:INTERNAL=OFF +//Qt feature: poll_ppoll (from target Qt6::Core) +QT_FEATURE_poll_ppoll:INTERNAL=OFF +//Qt feature: poll_select (from target Qt6::Core) +QT_FEATURE_poll_select:INTERNAL=OFF +//Qt feature: posix_fallocate (from target Qt6::Core) +QT_FEATURE_posix_fallocate:INTERNAL=OFF +//Qt feature: posix_sem (from target Qt6::Core) +QT_FEATURE_posix_sem:INTERNAL=ON +//Qt feature: posix_shm (from target Qt6::Core) +QT_FEATURE_posix_shm:INTERNAL=OFF +//Qt feature: precompile_header (from target Qt6::Core) +QT_FEATURE_precompile_header:INTERNAL=ON +//Qt feature: printsupport (from target Qt6::Core) +QT_FEATURE_printsupport:INTERNAL=ON +//Qt feature: private_tests (from target Qt6::Core) +QT_FEATURE_private_tests:INTERNAL=OFF +//Qt feature: process (from target Qt6::Core) +QT_FEATURE_process:INTERNAL=ON +//Qt feature: processenvironment (from target Qt6::Core) +QT_FEATURE_processenvironment:INTERNAL=ON +//Qt feature: progressbar (from target Qt6::Widgets) +QT_FEATURE_progressbar:INTERNAL=ON +//Qt feature: progressdialog (from target Qt6::Widgets) +QT_FEATURE_progressdialog:INTERNAL=ON +//Qt feature: proxymodel (from target Qt6::Core) +QT_FEATURE_proxymodel:INTERNAL=ON +//Qt feature: pushbutton (from target Qt6::Widgets) +QT_FEATURE_pushbutton:INTERNAL=ON +//Qt feature: qqnx_imf (from target Qt6::Gui) +QT_FEATURE_qqnx_imf:INTERNAL=OFF +//Qt feature: qqnx_pps (from target Qt6::Core) +QT_FEATURE_qqnx_pps:INTERNAL=OFF +//Qt feature: radiobutton (from target Qt6::Widgets) +QT_FEATURE_radiobutton:INTERNAL=ON +//Qt feature: raster_64bit (from target Qt6::Gui) +QT_FEATURE_raster_64bit:INTERNAL=ON +//Qt feature: raster_fp (from target Qt6::Gui) +QT_FEATURE_raster_fp:INTERNAL=ON +//Qt feature: rdrnd (from target Qt6::Core) +QT_FEATURE_rdrnd:INTERNAL=ON +//Qt feature: rdseed (from target Qt6::Core) +QT_FEATURE_rdseed:INTERNAL=ON +//Qt feature: reduce_exports (from target Qt6::Core) +QT_FEATURE_reduce_exports:INTERNAL=ON +//Qt feature: reduce_relocations (from target Qt6::Core) +QT_FEATURE_reduce_relocations:INTERNAL=OFF +//Qt feature: regularexpression (from target Qt6::Core) +QT_FEATURE_regularexpression:INTERNAL=ON +//Qt feature: relocatable (from target Qt6::Core) +QT_FEATURE_relocatable:INTERNAL=ON +//Qt feature: renameat2 (from target Qt6::Core) +QT_FEATURE_renameat2:INTERNAL=OFF +//Qt feature: resizehandler (from target Qt6::Widgets) +QT_FEATURE_resizehandler:INTERNAL=ON +//Qt feature: rpath (from target Qt6::Core) +QT_FEATURE_rpath:INTERNAL=OFF +//Qt feature: rubberband (from target Qt6::Widgets) +QT_FEATURE_rubberband:INTERNAL=ON +//Qt feature: scrollarea (from target Qt6::Widgets) +QT_FEATURE_scrollarea:INTERNAL=ON +//Qt feature: scrollbar (from target Qt6::Widgets) +QT_FEATURE_scrollbar:INTERNAL=ON +//Qt feature: scroller (from target Qt6::Widgets) +QT_FEATURE_scroller:INTERNAL=ON +//Qt feature: separate_debug_info (from target Qt6::Core) +QT_FEATURE_separate_debug_info:INTERNAL=ON +//Qt feature: sessionmanager (from target Qt6::Gui) +QT_FEATURE_sessionmanager:INTERNAL=ON +//Qt feature: settings (from target Qt6::Core) +QT_FEATURE_settings:INTERNAL=ON +//Qt feature: sha3_fast (from target Qt6::Core) +QT_FEATURE_sha3_fast:INTERNAL=ON +//Qt feature: shani (from target Qt6::Core) +QT_FEATURE_shani:INTERNAL=ON +//Qt feature: shared (from target Qt6::Core) +QT_FEATURE_shared:INTERNAL=ON +//Qt feature: sharedmemory (from target Qt6::Core) +QT_FEATURE_sharedmemory:INTERNAL=ON +//Qt feature: shortcut (from target Qt6::Core) +QT_FEATURE_shortcut:INTERNAL=ON +//Qt feature: signaling_nan (from target Qt6::Core) +QT_FEATURE_signaling_nan:INTERNAL=ON +//Qt feature: simulator_and_device (from target Qt6::Core) +QT_FEATURE_simulator_and_device:INTERNAL=OFF +//Qt feature: sizegrip (from target Qt6::Widgets) +QT_FEATURE_sizegrip:INTERNAL=ON +//Qt feature: slider (from target Qt6::Widgets) +QT_FEATURE_slider:INTERNAL=ON +//Qt feature: slog2 (from target Qt6::Core) +QT_FEATURE_slog2:INTERNAL=OFF +//Qt feature: sortfilterproxymodel (from target Qt6::Core) +QT_FEATURE_sortfilterproxymodel:INTERNAL=ON +//Qt feature: spinbox (from target Qt6::Widgets) +QT_FEATURE_spinbox:INTERNAL=ON +//Qt feature: splashscreen (from target Qt6::Widgets) +QT_FEATURE_splashscreen:INTERNAL=ON +//Qt feature: splitter (from target Qt6::Widgets) +QT_FEATURE_splitter:INTERNAL=ON +//Qt feature: sql (from target Qt6::Core) +QT_FEATURE_sql:INTERNAL=ON +//Qt feature: sse2 (from target Qt6::Core) +QT_FEATURE_sse2:INTERNAL=ON +//Qt feature: sse3 (from target Qt6::Core) +QT_FEATURE_sse3:INTERNAL=ON +//Qt feature: sse4_1 (from target Qt6::Core) +QT_FEATURE_sse4_1:INTERNAL=ON +//Qt feature: sse4_2 (from target Qt6::Core) +QT_FEATURE_sse4_2:INTERNAL=ON +//Qt feature: ssse3 (from target Qt6::Core) +QT_FEATURE_ssse3:INTERNAL=ON +//Qt feature: stack_protector_strong (from target Qt6::Core) +QT_FEATURE_stack_protector_strong:INTERNAL=OFF +//Qt feature: stackedwidget (from target Qt6::Widgets) +QT_FEATURE_stackedwidget:INTERNAL=ON +//Qt feature: standarditemmodel (from target Qt6::Gui) +QT_FEATURE_standarditemmodel:INTERNAL=ON +//Qt feature: static (from target Qt6::Core) +QT_FEATURE_static:INTERNAL=OFF +//Qt feature: statusbar (from target Qt6::Widgets) +QT_FEATURE_statusbar:INTERNAL=ON +//Qt feature: statustip (from target Qt6::Widgets) +QT_FEATURE_statustip:INTERNAL=ON +//Qt feature: std_atomic64 (from target Qt6::Core) +QT_FEATURE_std_atomic64:INTERNAL=ON +//Qt feature: stdlib_libcpp (from target Qt6::Core) +QT_FEATURE_stdlib_libcpp:INTERNAL=OFF +//Qt feature: stringlistmodel (from target Qt6::Core) +QT_FEATURE_stringlistmodel:INTERNAL=ON +//Qt feature: style_android (from target Qt6::Widgets) +QT_FEATURE_style_android:INTERNAL=OFF +//Qt feature: style_fusion (from target Qt6::Widgets) +QT_FEATURE_style_fusion:INTERNAL=ON +//Qt feature: style_mac (from target Qt6::Widgets) +QT_FEATURE_style_mac:INTERNAL=OFF +//Qt feature: style_stylesheet (from target Qt6::Widgets) +QT_FEATURE_style_stylesheet:INTERNAL=ON +//Qt feature: style_windows (from target Qt6::Widgets) +QT_FEATURE_style_windows:INTERNAL=ON +//Qt feature: style_windows11 (from target Qt6::Widgets) +QT_FEATURE_style_windows11:INTERNAL=ON +//Qt feature: style_windowsvista (from target Qt6::Widgets) +QT_FEATURE_style_windowsvista:INTERNAL=ON +//Qt feature: syntaxhighlighter (from target Qt6::Widgets) +QT_FEATURE_syntaxhighlighter:INTERNAL=ON +//Qt feature: syslog (from target Qt6::Core) +QT_FEATURE_syslog:INTERNAL=OFF +//Qt feature: system_doubleconversion (from target Qt6::Core) +QT_FEATURE_system_doubleconversion:INTERNAL=OFF +//Qt feature: system_freetype (from target Qt6::Gui) +QT_FEATURE_system_freetype:INTERNAL=OFF +//Qt feature: system_harfbuzz (from target Qt6::Gui) +QT_FEATURE_system_harfbuzz:INTERNAL=OFF +//Qt feature: system_jpeg (from target Qt6::Gui) +QT_FEATURE_system_jpeg:INTERNAL=OFF +//Qt feature: system_libb2 (from target Qt6::Core) +QT_FEATURE_system_libb2:INTERNAL=OFF +//Qt feature: system_pcre2 (from target Qt6::Core) +QT_FEATURE_system_pcre2:INTERNAL=OFF +//Qt feature: system_png (from target Qt6::Gui) +QT_FEATURE_system_png:INTERNAL=OFF +//Qt feature: system_textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_system_textmarkdownreader:INTERNAL=OFF +//Qt feature: system_xcb_xinput (from target Qt6::Gui) +QT_FEATURE_system_xcb_xinput:INTERNAL=OFF +//Qt feature: system_zlib (from target Qt6::Core) +QT_FEATURE_system_zlib:INTERNAL=OFF +//Qt feature: systemsemaphore (from target Qt6::Core) +QT_FEATURE_systemsemaphore:INTERNAL=ON +//Qt feature: systemtrayicon (from target Qt6::Gui) +QT_FEATURE_systemtrayicon:INTERNAL=ON +//Qt feature: sysv_sem (from target Qt6::Core) +QT_FEATURE_sysv_sem:INTERNAL=OFF +//Qt feature: sysv_shm (from target Qt6::Core) +QT_FEATURE_sysv_shm:INTERNAL=OFF +//Qt feature: tabbar (from target Qt6::Widgets) +QT_FEATURE_tabbar:INTERNAL=ON +//Qt feature: tabletevent (from target Qt6::Gui) +QT_FEATURE_tabletevent:INTERNAL=ON +//Qt feature: tableview (from target Qt6::Widgets) +QT_FEATURE_tableview:INTERNAL=ON +//Qt feature: tablewidget (from target Qt6::Widgets) +QT_FEATURE_tablewidget:INTERNAL=ON +//Qt feature: tabwidget (from target Qt6::Widgets) +QT_FEATURE_tabwidget:INTERNAL=ON +//Qt feature: temporaryfile (from target Qt6::Core) +QT_FEATURE_temporaryfile:INTERNAL=ON +//Qt feature: testlib (from target Qt6::Core) +QT_FEATURE_testlib:INTERNAL=ON +//Qt feature: textbrowser (from target Qt6::Widgets) +QT_FEATURE_textbrowser:INTERNAL=ON +//Qt feature: textdate (from target Qt6::Core) +QT_FEATURE_textdate:INTERNAL=ON +//Qt feature: textedit (from target Qt6::Widgets) +QT_FEATURE_textedit:INTERNAL=ON +//Qt feature: texthtmlparser (from target Qt6::Gui) +QT_FEATURE_texthtmlparser:INTERNAL=ON +//Qt feature: textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_textmarkdownreader:INTERNAL=ON +//Qt feature: textmarkdownwriter (from target Qt6::Gui) +QT_FEATURE_textmarkdownwriter:INTERNAL=ON +//Qt feature: textodfwriter (from target Qt6::Gui) +QT_FEATURE_textodfwriter:INTERNAL=ON +//Qt feature: thread (from target Qt6::Core) +QT_FEATURE_thread:INTERNAL=ON +//Qt feature: timezone (from target Qt6::Core) +QT_FEATURE_timezone:INTERNAL=ON +//Qt feature: toolbar (from target Qt6::Widgets) +QT_FEATURE_toolbar:INTERNAL=ON +//Qt feature: toolbox (from target Qt6::Widgets) +QT_FEATURE_toolbox:INTERNAL=ON +//Qt feature: toolbutton (from target Qt6::Widgets) +QT_FEATURE_toolbutton:INTERNAL=ON +//Qt feature: tooltip (from target Qt6::Widgets) +QT_FEATURE_tooltip:INTERNAL=ON +//Qt feature: translation (from target Qt6::Core) +QT_FEATURE_translation:INTERNAL=ON +//Qt feature: transposeproxymodel (from target Qt6::Core) +QT_FEATURE_transposeproxymodel:INTERNAL=ON +//Qt feature: treeview (from target Qt6::Widgets) +QT_FEATURE_treeview:INTERNAL=ON +//Qt feature: treewidget (from target Qt6::Widgets) +QT_FEATURE_treewidget:INTERNAL=ON +//Qt feature: tslib (from target Qt6::Gui) +QT_FEATURE_tslib:INTERNAL=OFF +//Qt feature: tuiotouch (from target Qt6::Gui) +QT_FEATURE_tuiotouch:INTERNAL=ON +//Qt feature: undocommand (from target Qt6::Gui) +QT_FEATURE_undocommand:INTERNAL=ON +//Qt feature: undogroup (from target Qt6::Gui) +QT_FEATURE_undogroup:INTERNAL=ON +//Qt feature: undostack (from target Qt6::Gui) +QT_FEATURE_undostack:INTERNAL=ON +//Qt feature: undoview (from target Qt6::Widgets) +QT_FEATURE_undoview:INTERNAL=ON +//Qt feature: use_bfd_linker (from target Qt6::Core) +QT_FEATURE_use_bfd_linker:INTERNAL=OFF +//Qt feature: use_gold_linker (from target Qt6::Core) +QT_FEATURE_use_gold_linker:INTERNAL=OFF +//Qt feature: use_lld_linker (from target Qt6::Core) +QT_FEATURE_use_lld_linker:INTERNAL=OFF +//Qt feature: use_mold_linker (from target Qt6::Core) +QT_FEATURE_use_mold_linker:INTERNAL=OFF +//Qt feature: vaes (from target Qt6::Core) +QT_FEATURE_vaes:INTERNAL=ON +//Qt feature: validator (from target Qt6::Gui) +QT_FEATURE_validator:INTERNAL=ON +//Qt feature: vkgen (from target Qt6::Gui) +QT_FEATURE_vkgen:INTERNAL=ON +//Qt feature: vkkhrdisplay (from target Qt6::Gui) +QT_FEATURE_vkkhrdisplay:INTERNAL=OFF +//Qt feature: vnc (from target Qt6::Gui) +QT_FEATURE_vnc:INTERNAL=OFF +//Qt feature: vsp2 (from target Qt6::Gui) +QT_FEATURE_vsp2:INTERNAL=OFF +//Qt feature: vulkan (from target Qt6::Gui) +QT_FEATURE_vulkan:INTERNAL=ON +//Qt feature: wasm_exceptions (from target Qt6::Core) +QT_FEATURE_wasm_exceptions:INTERNAL=OFF +//Qt feature: wasm_simd128 (from target Qt6::Core) +QT_FEATURE_wasm_simd128:INTERNAL=OFF +//Qt feature: wayland (from target Qt6::Gui) +QT_FEATURE_wayland:INTERNAL=OFF +//Qt feature: whatsthis (from target Qt6::Gui) +QT_FEATURE_whatsthis:INTERNAL=ON +//Qt feature: wheelevent (from target Qt6::Gui) +QT_FEATURE_wheelevent:INTERNAL=ON +//Qt feature: widgets (from target Qt6::Core) +QT_FEATURE_widgets:INTERNAL=ON +//Qt feature: widgettextcontrol (from target Qt6::Widgets) +QT_FEATURE_widgettextcontrol:INTERNAL=ON +//Qt feature: wizard (from target Qt6::Widgets) +QT_FEATURE_wizard:INTERNAL=ON +//Qt feature: x86intrin (from target Qt6::Core) +QT_FEATURE_x86intrin:INTERNAL=ON +//Qt feature: xcb (from target Qt6::Gui) +QT_FEATURE_xcb:INTERNAL=OFF +//Qt feature: xcb_egl_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_egl_plugin:INTERNAL=OFF +//Qt feature: xcb_glx (from target Qt6::Gui) +QT_FEATURE_xcb_glx:INTERNAL=OFF +//Qt feature: xcb_glx_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_glx_plugin:INTERNAL=OFF +//Qt feature: xcb_native_painting (from target Qt6::Gui) +QT_FEATURE_xcb_native_painting:INTERNAL=OFF +//Qt feature: xcb_sm (from target Qt6::Gui) +QT_FEATURE_xcb_sm:INTERNAL=OFF +//Qt feature: xcb_xlib (from target Qt6::Gui) +QT_FEATURE_xcb_xlib:INTERNAL=OFF +//Qt feature: xkbcommon (from target Qt6::Gui) +QT_FEATURE_xkbcommon:INTERNAL=OFF +//Qt feature: xkbcommon_x11 (from target Qt6::Gui) +QT_FEATURE_xkbcommon_x11:INTERNAL=OFF +//Qt feature: xlib (from target Qt6::Gui) +QT_FEATURE_xlib:INTERNAL=OFF +//Qt feature: xml (from target Qt6::Core) +QT_FEATURE_xml:INTERNAL=ON +//Qt feature: xmlstream (from target Qt6::Core) +QT_FEATURE_xmlstream:INTERNAL=ON +//Qt feature: xmlstreamreader (from target Qt6::Core) +QT_FEATURE_xmlstreamreader:INTERNAL=ON +//Qt feature: xmlstreamwriter (from target Qt6::Core) +QT_FEATURE_xmlstreamwriter:INTERNAL=ON +//Qt feature: xrender (from target Qt6::Gui) +QT_FEATURE_xrender:INTERNAL=OFF +//Qt feature: zstd (from target Qt6::Core) +QT_FEATURE_zstd:INTERNAL=OFF +//ADVANCED property for variable: Vulkan_GLSLANG_VALIDATOR_EXECUTABLE +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_GLSLC_EXECUTABLE +Vulkan_GLSLC_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_INCLUDE_DIR +Vulkan_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_LIBRARY +Vulkan_LIBRARY-ADVANCED:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/app +_Qt6_LINGUIST_TOOLS_DIR:INTERNAL=C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools + diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeCXXCompiler.cmake b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..24dc8fa --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeCXXCompiler.cmake @@ -0,0 +1,85 @@ +set(CMAKE_CXX_COMPILER "C:/Qt/Tools/mingw1120_64/bin/g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.2.0") +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 "MinGW") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Qt/Tools/mingw1120_64/bin/ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Qt/Tools/mingw1120_64/bin/gcc-ar.exe") +set(CMAKE_RANLIB "C:/Qt/Tools/mingw1120_64/bin/ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Qt/Tools/mingw1120_64/bin/gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Qt/Tools/mingw1120_64/bin/ld.exe") +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 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 TRUE) + +# 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 "C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++;C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32;C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward;C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include;C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed;C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;mingw32;gcc_s;gcc;moldname;mingwex;kernel32;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex;kernel32") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0;C:/Qt/Tools/mingw1120_64/lib/gcc;C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/lib;C:/Qt/Tools/mingw1120_64/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeDetermineCompilerABI_CXX.bin b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..b793d3a Binary files /dev/null and b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeRCCompiler.cmake b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeRCCompiler.cmake new file mode 100644 index 0000000..4e5064e --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeRCCompiler.cmake @@ -0,0 +1,6 @@ +set(CMAKE_RC_COMPILER "C:/Qt/Tools/mingw1120_64/bin/windres.exe") +set(CMAKE_RC_COMPILER_ARG1 "") +set(CMAKE_RC_COMPILER_LOADED 1) +set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC) +set(CMAKE_RC_OUTPUT_EXTENSION .obj) +set(CMAKE_RC_COMPILER_ENV_VAR "RC") diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeSystem.cmake b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeSystem.cmake new file mode 100644 index 0000000..dc8b200 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.26120") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.26120") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.26120") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.26120") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CompilerIdCXX/CMakeCXXCompilerId.cpp b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..52d56e2 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/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/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeConfigureLog.yaml b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..396a2f5 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,374 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeDetermineSystem.cmake:211 (message)" + - "CMakeLists.txt:3 (project)" + message: | + The system is: Windows - 10.0.26120 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:3 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: C:/Qt/Tools/mingw1120_64/bin/g++.exe + Build flags: -DQT_QML_DEBUG + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe" + + The CXX compiler identification is GNU, found in: + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CompilerIdCXX/a.exe + + - + kind: "try_compile-v1" + backtrace: + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-atw4ug" + binary: "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-atw4ug" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-atw4ug' + + Run Build Command(s): C:/Qt/Tools/Ninja/ninja.exe -v cmTC_80994 + [1/2] C:\\Qt\\Tools\\mingw1120_64\\bin\\g++.exe -DQT_QML_DEBUG -fdiagnostics-color=always -v -o CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=C:\\Qt\\Tools\\mingw1120_64\\bin\\g++.exe + Target: x86_64-w64-mingw32 + Configured with: ../../../src/gcc-11.2.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev3, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/lib -L/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/lib -L/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc' + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 11.2.0 (x86_64-posix-seh-rev3, Built by MinGW-W64 project) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_80994.dir/' + C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/cc1plus.exe -quiet -v -iprefix C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/ -D_REENTRANT -D QT_QML_DEBUG C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_80994.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=core2 -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\beo.MSI\\AppData\\Local\\Temp\\ccpoWJUM.s + GNU C++17 (x86_64-posix-seh-rev3, Built by MinGW-W64 project) version 11.2.0 (x86_64-w64-mingw32) + compiled by GNU C version 11.2.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Qt/Tools/mingw1120_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++" + ignoring duplicate directory "C:/Qt/Tools/mingw1120_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32" + ignoring duplicate directory "C:/Qt/Tools/mingw1120_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward" + ignoring duplicate directory "C:/Qt/Tools/mingw1120_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/11.2.0/include" + ignoring nonexistent directory "D:/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64D:/a/_temp/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../include" + ignoring duplicate directory "C:/Qt/Tools/mingw1120_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed" + ignoring duplicate directory "C:/Qt/Tools/mingw1120_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/include" + ignoring nonexistent directory "D:/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/mingw/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++ + C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32 + C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward + C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include + C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed + C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/include + End of search list. + GNU C++17 (x86_64-posix-seh-rev3, Built by MinGW-W64 project) version 11.2.0 (x86_64-w64-mingw32) + compiled by GNU C version 11.2.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: d7afaace9697386afb994a04753f738f + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_80994.dir/' + C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\beo.MSI\\AppData\\Local\\Temp\\ccpoWJUM.s + GNU assembler version 2.37 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.37 + COMPILER_PATH=C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/;C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/;C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/bin/ + LIBRARY_PATH=C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/;C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/;C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../lib/;C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.' + [2/2] cmd.exe /C "cd . && C:\\Qt\\Tools\\mingw1120_64\\bin\\g++.exe -DQT_QML_DEBUG -v CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_80994.exe -Wl,--out-implib,libcmTC_80994.dll.a -Wl,--major-image-version,0,--minor-image-version,0 && cd ." + Using built-in specs. + COLLECT_GCC=C:\\Qt\\Tools\\mingw1120_64\\bin\\g++.exe + COLLECT_LTO_WRAPPER=C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/lto-wrapper.exe + Target: x86_64-w64-mingw32 + Configured with: ../../../src/gcc-11.2.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev3, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/lib -L/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/lib -L/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc' + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 11.2.0 (x86_64-posix-seh-rev3, Built by MinGW-W64 project) + COMPILER_PATH=C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/;C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/;C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/bin/ + LIBRARY_PATH=C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/;C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/;C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../lib/;C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../ + COLLECT_GCC_OPTIONS='-D' 'QT_QML_DEBUG' '-v' '-o' 'cmTC_80994.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'cmTC_80994.' + C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/collect2.exe -plugin C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/liblto_plugin.dll -plugin-opt=C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\beo.MSI\\AppData\\Local\\Temp\\ccLV03kf.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 --sysroot=D:/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64 -m i386pep -Bdynamic -o cmTC_80994.exe C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/crtbegin.o -LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0 -LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc -LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../lib -LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../.. CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_80994.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/crtend.o + COLLECT_GCC_OPTIONS='-D' 'QT_QML_DEBUG' '-v' '-o' 'cmTC_80994.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'cmTC_80994.' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++] + add: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32] + add: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward] + add: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include] + add: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed] + add: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/include] + end of search list found + collapse include dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++] ==> [C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++] + collapse include dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32] ==> [C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32] + collapse include dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward] ==> [C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward] + collapse include dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include] ==> [C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include] + collapse include dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed] ==> [C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed] + collapse include dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/include] ==> [C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include] + implicit include dirs: [C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++;C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32;C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward;C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include;C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed;C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld\\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: 'A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-atw4ug'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Qt/Tools/Ninja/ninja.exe -v cmTC_80994] + ignore line: [[1/2] C:\\Qt\\Tools\\mingw1120_64\\bin\\g++.exe -DQT_QML_DEBUG -fdiagnostics-color=always -v -o CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Qt\\Tools\\mingw1120_64\\bin\\g++.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-11.2.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev3, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/lib -L/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/lib -L/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc'] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (x86_64-posix-seh-rev3 Built by MinGW-W64 project) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_80994.dir/'] + ignore line: [ C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/cc1plus.exe -quiet -v -iprefix C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/ -D_REENTRANT -D QT_QML_DEBUG C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_80994.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=core2 -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\beo.MSI\\AppData\\Local\\Temp\\ccpoWJUM.s] + ignore line: [GNU C++17 (x86_64-posix-seh-rev3 Built by MinGW-W64 project) version 11.2.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.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 duplicate directory "C:/Qt/Tools/mingw1120_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++"] + ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw1120_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32"] + ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw1120_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward"] + ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw1120_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/11.2.0/include"] + ignore line: [ignoring nonexistent directory "D:/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64D:/a/_temp/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw1120_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw1120_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/include"] + ignore line: [ignoring nonexistent directory "D:/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/mingw/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++] + ignore line: [ C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32] + ignore line: [ C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward] + ignore line: [ C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include] + ignore line: [ C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed] + ignore line: [ C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (x86_64-posix-seh-rev3 Built by MinGW-W64 project) version 11.2.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.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: [Compiler executable checksum: d7afaace9697386afb994a04753f738f] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_80994.dir/'] + ignore line: [ C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\beo.MSI\\AppData\\Local\\Temp\\ccpoWJUM.s] + ignore line: [GNU assembler version 2.37 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.37] + ignore line: [COMPILER_PATH=C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../lib/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [[2/2] cmd.exe /C "cd . && C:\\Qt\\Tools\\mingw1120_64\\bin\\g++.exe -DQT_QML_DEBUG -v CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_80994.exe -Wl --out-implib libcmTC_80994.dll.a -Wl --major-image-version 0 --minor-image-version 0 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Qt\\Tools\\mingw1120_64\\bin\\g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/lto-wrapper.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-11.2.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev3, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/include -I/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/opt/lib -L/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-zlib-static/lib -L/d/a/mingw-builds/mingw-builds/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/d/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc'] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.2.0 (x86_64-posix-seh-rev3 Built by MinGW-W64 project) ] + ignore line: [COMPILER_PATH=C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../lib/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-D' 'QT_QML_DEBUG' '-v' '-o' 'cmTC_80994.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'cmTC_80994.'] + link line: [ C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/collect2.exe -plugin C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/liblto_plugin.dll -plugin-opt=C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\beo.MSI\\AppData\\Local\\Temp\\ccLV03kf.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 --sysroot=D:/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64 -m i386pep -Bdynamic -o cmTC_80994.exe C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/crtbegin.o -LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0 -LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc -LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../lib -LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../.. CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_80994.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/crtend.o] + arg [C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Qt/Tools/mingw1120_64/bin/../libexec/gcc/x86_64-w64-mingw32/11.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\beo.MSI\\AppData\\Local\\Temp\\ccLV03kf.res] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-lpthread] ==> ignore + arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore + arg [-plugin-opt=-pass-through=-lshell32] ==> ignore + arg [-plugin-opt=-pass-through=-luser32] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-liconv] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [--sysroot=D:/a/mingw-builds/mingw-builds/buildroot/x86_64-1120-posix-seh-rt_v9-rev3/mingw64] ==> ignore + arg [-m] ==> ignore + arg [i386pep] ==> ignore + arg [-Bdynamic] ==> search dynamic + arg [-o] ==> ignore + arg [cmTC_80994.exe] ==> ignore + arg [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] + arg [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/crtbegin.o] ==> obj [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/crtbegin.o] + arg [-LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0] ==> dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0] + arg [-LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc] ==> dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc] + arg [-LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib] + arg [-LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../lib] ==> dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../lib] + arg [-LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib] + arg [-LC:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../..] ==> dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../..] + arg [CMakeFiles/cmTC_80994.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [--out-implib] ==> ignore + arg [libcmTC_80994.dll.a] ==> ignore + arg [--major-image-version] ==> ignore + arg [0] ==> ignore + arg [--minor-image-version] ==> ignore + arg [0] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-lkernel32] ==> lib [kernel32] + arg [-lpthread] ==> lib [pthread] + arg [-ladvapi32] ==> lib [advapi32] + arg [-lshell32] ==> lib [shell32] + arg [-luser32] ==> lib [user32] + arg [-lkernel32] ==> lib [kernel32] + arg [-liconv] ==> lib [iconv] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-lkernel32] ==> lib [kernel32] + arg [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/crtend.o] ==> obj [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/crtend.o] + remove lib [msvcrt] + remove lib [msvcrt] + collapse obj [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> [C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/lib/crt2.o] + collapse obj [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/crtbegin.o] ==> [C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/crtbegin.o] + collapse obj [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/crtend.o] ==> [C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/crtend.o] + collapse library dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0] ==> [C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0] + collapse library dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc] ==> [C:/Qt/Tools/mingw1120_64/lib/gcc] + collapse library dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> [C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../lib] ==> [C:/Qt/Tools/mingw1120_64/lib] + collapse library dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib] ==> [C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/Qt/Tools/mingw1120_64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../..] ==> [C:/Qt/Tools/mingw1120_64/lib] + implicit libs: [stdc++;mingw32;gcc_s;gcc;moldname;mingwex;kernel32;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex;kernel32] + implicit objs: [C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/lib/crt2.o;C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/crtbegin.o;C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/crtend.o] + implicit dirs: [C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0;C:/Qt/Tools/mingw1120_64/lib/gcc;C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/lib;C:/Qt/Tools/mingw1120_64/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindThreads.cmake:99 (CHECK_CXX_SOURCE_COMPILES)" + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake:27 (_qt_internal_find_third_party_dependencies)" + - "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake:122 (include)" + - "CMakeLists.txt:12 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-37o4vm" + binary: "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-37o4vm" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6;C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/3rdparty/kwin" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: 'A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-37o4vm' + + Run Build Command(s): C:/Qt/Tools/Ninja/ninja.exe -v cmTC_c9a8a + [1/2] C:\\Qt\\Tools\\mingw1120_64\\bin\\g++.exe -DCMAKE_HAVE_LIBC_PTHREAD -DQT_QML_DEBUG -std=gnu++17 -fdiagnostics-color=always -o CMakeFiles/cmTC_c9a8a.dir/src.cxx.obj -c A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-37o4vm/src.cxx + [2/2] cmd.exe /C "cd . && C:\\Qt\\Tools\\mingw1120_64\\bin\\g++.exe -DQT_QML_DEBUG CMakeFiles/cmTC_c9a8a.dir/src.cxx.obj -o cmTC_c9a8a.exe -Wl,--out-implib,libcmTC_c9a8a.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake:36 (check_cxx_source_compiles)" + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake:33 (_qt_internal_find_third_party_dependencies)" + - "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake:45 (include)" + - "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:111 (find_dependency)" + - "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake:42 (_qt_internal_find_qt_dependencies)" + - "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake:43 (include)" + - "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake:167 (find_package)" + - "CMakeLists.txt:13 (find_package)" + checks: + - "Performing Test HAVE_STDATOMIC" + directories: + source: "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-4z009y" + binary: "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-4z009y" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6;C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/3rdparty/kwin;C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6;C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/3rdparty/kwin" + buildResult: + variable: "HAVE_STDATOMIC" + cached: true + stdout: | + Change Dir: 'A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-4z009y' + + Run Build Command(s): C:/Qt/Tools/Ninja/ninja.exe -v cmTC_2a582 + [1/2] C:\\Qt\\Tools\\mingw1120_64\\bin\\g++.exe -DHAVE_STDATOMIC -DQT_QML_DEBUG -std=gnu++17 -fdiagnostics-color=always -o CMakeFiles/cmTC_2a582.dir/src.cxx.obj -c A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-4z009y/src.cxx + [2/2] cmd.exe /C "cd . && C:\\Qt\\Tools\\mingw1120_64\\bin\\g++.exe -DQT_QML_DEBUG CMakeFiles/cmTC_2a582.dir/src.cxx.obj -o cmTC_2a582.exe -Wl,--out-implib,libcmTC_2a582.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 +... diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/TargetDirectories.txt b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..a4a4a39 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,9 @@ +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app.dir +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/edit_cache.dir +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/rebuild_cache.dir +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/list_install_components.dir +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/install.dir +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/install/local.dir +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/install/strip.dir +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen_timestamp_deps.dir +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/VerifyGlobs.cmake b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/VerifyGlobs.cmake new file mode 100644 index 0000000..074bf5c --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/VerifyGlobs.cmake @@ -0,0 +1,193 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by CMake Version 3.27 +cmake_policy(SET CMP0009 NEW) + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.c") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.c++") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.cc") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.ch") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.cpp") +set(OLD_GLOB + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CompilerIdCXX/CMakeCXXCompilerId.cpp" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_mainwindow.cpp" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_match.cpp" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_matchresult.cpp" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_matchschedule.cpp" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_player.cpp" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_playerbox.cpp" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_scoreboard.cpp" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_ui_playerbox.cpp" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/mocs_compilation.cpp" + "A:/workspace/special-broccoli/app/main.cpp" + "A:/workspace/special-broccoli/app/mainwindow.cpp" + "A:/workspace/special-broccoli/app/matchui.cpp" + "A:/workspace/special-broccoli/app/playerbox.cpp" + "A:/workspace/special-broccoli/app/scoreboard.cpp" + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.cxx") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.h") +set(OLD_GLOB + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include/ui_mainwindow.h" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include/ui_playerbox.h" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include/ui_scoreboard.h" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include/ui_ui_playerbox.h" + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h" + "A:/workspace/special-broccoli/app/mainwindow.h" + "A:/workspace/special-broccoli/app/matchui.h" + "A:/workspace/special-broccoli/app/playerbox.h" + "A:/workspace/special-broccoli/app/scoreboard.h" + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.h++") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.hh") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.hpp") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.hxx") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.java") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.js") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.jui") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.qml") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.qrc") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.qs") +set(OLD_GLOB + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() + +# _directory_contents at C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:55 (file) +file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "A:/workspace/special-broccoli/app/*.ui") +set(OLD_GLOB + "A:/workspace/special-broccoli/app/mainwindow.ui" + "A:/workspace/special-broccoli/app/matchui.ui" + "A:/workspace/special-broccoli/app/playerbox.ui" + "A:/workspace/special-broccoli/app/scoreboard.ui" + ) +if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") + message("-- GLOB mismatch!") + file(TOUCH_NOCREATE "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs") +endif() diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir/AutogenInfo.json b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..e4823bb --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir/AutogenInfo.json @@ -0,0 +1,376 @@ +{ + "BUILD_DIR" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen", + "CMAKE_BINARY_DIR" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug", + "CMAKE_CURRENT_BINARY_DIR" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug", + "CMAKE_CURRENT_SOURCE_DIR" : "A:/workspace/special-broccoli/app", + "CMAKE_EXECUTABLE" : "C:/Qt/Tools/CMake_64/bin/cmake.exe", + "CMAKE_LIST_FILES" : + [ + "A:/workspace/special-broccoli/app/CMakeLists.txt", + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake", + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeSystem.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake", + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeCXXCompiler.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU.cmake", + "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeRCCompiler.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeRCInformation.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-windres.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX-ABI.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindThreads.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckLibraryExists.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckIncludeFileCXX.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/QtInstallPaths.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/GNUInstallDirs.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindVulkan.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersion.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersionImpl.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfig.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsDependencies.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets-relwithdebinfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsAdditionalTargetInfo.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsVersionlessTargets.cmake", + "C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeParseArguments.cmake", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/GNUInstallDirs.cmake" + ], + "CMAKE_SOURCE_DIR" : "A:/workspace/special-broccoli/app", + "DEP_FILE" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/deps", + "DEP_FILE_RULE_NAME" : "app_autogen/timestamp", + "HEADERS" : + [ + [ + "A:/workspace/special-broccoli/app/mainwindow.h", + "MU", + "EWIEGA46WW/moc_mainwindow.cpp", + null + ], + [ + "A:/workspace/special-broccoli/app/matchui.h", + "MU", + "EWIEGA46WW/moc_matchui.cpp", + null + ], + [ + "A:/workspace/special-broccoli/app/playerbox.h", + "MU", + "EWIEGA46WW/moc_playerbox.cpp", + null + ], + [ + "A:/workspace/special-broccoli/app/scoreboard.h", + "MU", + "EWIEGA46WW/moc_scoreboard.cpp", + null + ] + ], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include", + "MOC_COMPILATION_FILE" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "MINGW_HAS_SECURE_API=1", + "QT_CORE_LIB", + "QT_GUI_LIB", + "QT_NEEDS_QMAIN", + "QT_WIDGETS_LIB", + "UNICODE", + "WIN32", + "WIN64", + "_ENABLE_EXTENDED_ALIGNED_STORAGE", + "_UNICODE", + "_WIN64" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "C:/Qt/6.7.0/mingw_64/include/QtCore", + "C:/Qt/6.7.0/mingw_64/include", + "C:/Qt/6.7.0/mingw_64/mkspecs/win32-g++", + "C:/Qt/6.7.0/mingw_64/include/QtWidgets", + "C:/Qt/6.7.0/mingw_64/include/QtGui", + "C:/VulkanSDK/1.3.283.0/Include", + "C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++", + "C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32", + "C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward", + "C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include", + "C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed", + "C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/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" : + [ + "C:/Qt/Tools/mingw1120_64/bin/g++.exe", + "-std=gnu++17", + "-dM", + "-E", + "-c", + "C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : [], + "MULTI_CONFIG" : false, + "PARALLEL" : 6, + "PARSE_CACHE_FILE" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "C:/Qt/6.7.0/mingw_64/./bin/moc.exe", + "QT_UIC_EXECUTABLE" : "C:/Qt/6.7.0/mingw_64/./bin/uic.exe", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 7, + "SETTINGS_FILE" : "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ "A:/workspace/special-broccoli/app/main.cpp", "MU", null ], + [ "A:/workspace/special-broccoli/app/mainwindow.cpp", "MU", null ], + [ "A:/workspace/special-broccoli/app/matchui.cpp", "MU", null ], + [ "A:/workspace/special-broccoli/app/playerbox.cpp", "MU", null ], + [ "A:/workspace/special-broccoli/app/scoreboard.cpp", "MU", null ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : [], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir/AutogenUsed.txt b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir/AutogenUsed.txt new file mode 100644 index 0000000..9383f78 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir/AutogenUsed.txt @@ -0,0 +1,2 @@ +moc:e10f649d2345d36267137288aeee68e6df6fccf7b77ef7f8654e618bbb2b8764 +uic:7ded314ebceb319d384515b756ca1e8dfc96fefb4e8e815f147097577f0e3d00 diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir/ParseCache.txt b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir/ParseCache.txt new file mode 100644 index 0000000..409438f --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir/ParseCache.txt @@ -0,0 +1,2316 @@ +# Generated by CMake. Changes will be overwritten. +A:/workspace/special-broccoli/app/mainwindow.h + mmc:Q_OBJECT + mdp:A:/workspace/special-broccoli/app/matchresult.h + mdp:A:/workspace/special-broccoli/app/player.h + mdp:A:/workspace/special-broccoli/app/playerbox.h + mdp:A:/workspace/special-broccoli/app/scoreboard.h + mdp:A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h + mdp:A:/workspace/special-broccoli/app/mainwindow.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QObject + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QSignalMapper + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QString + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QVector + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q23utility.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qabstractitemmodel.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdebug.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qendian.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qhash.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qitemselectionmodel.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qline.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlocale.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmargins.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qpoint.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qrect.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qregularexpression.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qset.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsignalmapper.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsize.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qurl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qvariant.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qvector.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qaction.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qbrush.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qcolor.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qcursor.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qfont.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qicon.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qimage.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qpalette.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qpen.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qregion.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qrgb.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtextcursor.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtextdocument.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtextformat.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtextoption.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtransform.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qvalidator.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/QLineEdit + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/QListWidget + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/QMainWindow + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/QPushButton + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/QSpinBox + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/QWidget + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractbutton.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemdelegate.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractscrollarea.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractslider.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractspinbox.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qframe.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlineedit.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlistview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlistwidget.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qmainwindow.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qpushbutton.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qrubberband.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qslider.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qspinbox.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qstyle.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qstyleoption.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtabbar.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtabwidget.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/climits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h +A:/workspace/special-broccoli/app/match.h + mmc:Q_OBJECT + mdp:A:/workspace/special-broccoli/app/matchresult.h + mdp:A:/workspace/special-broccoli/app/player.h + mdp:A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h + mdp:A:/workspace/special-broccoli/app/match.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QObject + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QString + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h +A:/workspace/special-broccoli/app/matchresult.h + mmc:Q_OBJECT + mdp:A:/workspace/special-broccoli/app/player.h + mdp:A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h + mdp:A:/workspace/special-broccoli/app/matchresult.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QObject + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QString + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h +A:/workspace/special-broccoli/app/scoreboard.h + mmc:Q_OBJECT + mdp:A:/workspace/special-broccoli/app/matchresult.h + mdp:A:/workspace/special-broccoli/app/player.h + mdp:A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h + mdp:A:/workspace/special-broccoli/app/scoreboard.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QObject + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QString + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QVector + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qvector.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h +A:/workspace/special-broccoli/app/matchschedule.h + mmc:Q_OBJECT + mdp:A:/workspace/special-broccoli/app/match.h + mdp:A:/workspace/special-broccoli/app/matchresult.h + mdp:A:/workspace/special-broccoli/app/player.h + mdp:A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h + mdp:A:/workspace/special-broccoli/app/matchschedule.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QObject + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QString + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QVector + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qvector.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h +A:/workspace/special-broccoli/app/player.h + mmc:Q_OBJECT + mdp:A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h + mdp:A:/workspace/special-broccoli/app/player.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QObject + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QString + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h +A:/workspace/special-broccoli/app/playerbox.h + mmc:Q_OBJECT + mdp:A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h + mdp:A:/workspace/special-broccoli/app/playerbox.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QSignalMapper + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/QString + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/q23utility.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qabstractitemmodel.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qdebug.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qendian.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qhash.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qitemselectionmodel.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qline.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlocale.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmargins.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qpoint.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qrect.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qregularexpression.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qset.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsignalmapper.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsize.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qurl.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qvariant.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qaction.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qbrush.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qcolor.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qcursor.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qfont.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qicon.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qimage.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qpalette.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qpen.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qregion.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qrgb.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtextcursor.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtextdocument.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtextformat.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtextoption.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qtransform.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qvalidator.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/QLineEdit + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/QListWidget + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/QPushButton + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/QSpinBox + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/QWidget + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractbutton.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemdelegate.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractscrollarea.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractslider.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractspinbox.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qframe.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlineedit.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlistview.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlistwidget.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qpushbutton.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qrubberband.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qslider.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qspinbox.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qstyle.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qstyleoption.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtabbar.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtabwidget.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h + mdp:C:/Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/climits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h + mdp:C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h + mdp:C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h +A:/workspace/special-broccoli/app/main.cpp +A:/workspace/special-broccoli/app/mainwindow.cpp + uic:ui_MainWindow.h +A:/workspace/special-broccoli/app/match.cpp +A:/workspace/special-broccoli/app/matchresult.cpp +A:/workspace/special-broccoli/app/matchschedule.cpp +A:/workspace/special-broccoli/app/player.cpp +A:/workspace/special-broccoli/app/playerbox.cpp + uic:ui_playerbox.h +A:/workspace/special-broccoli/app/scoreboard.cpp diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_fr_FR.ts_lst_file b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_fr_FR.ts_lst_file new file mode 100644 index 0000000..65aacec --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_fr_FR.ts_lst_file @@ -0,0 +1 @@ +A:/workspace/special-broccoli/app diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/clean_additional.cmake b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..1084c32 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/clean_additional.cmake @@ -0,0 +1,10 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "Debug") + file(REMOVE_RECURSE + "CMakeFiles\\app_autogen.dir\\AutogenUsed.txt" + "CMakeFiles\\app_autogen.dir\\ParseCache.txt" + "app_autogen" + ) +endif() diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.check_cache b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs new file mode 100644 index 0000000..2b38fac --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs @@ -0,0 +1 @@ +# This file is generated by CMake for checking of the VerifyGlobs.cmake file diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/d/fc12893de09678e06730cb32dacb6f2c33ae9fd1f149455b8f8456ea5f65e286.d b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/d/fc12893de09678e06730cb32dacb6f2c33ae9fd1f149455b8f8456ea5f65e286.d new file mode 100644 index 0000000..2a45483 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/d/fc12893de09678e06730cb32dacb6f2c33ae9fd1f149455b8f8456ea5f65e286.d @@ -0,0 +1,590 @@ +app_autogen/timestamp: \ + A:/workspace/special-broccoli/app/CMakeLists.txt \ + .qtc/package-manager/auto-setup.cmake \ + CMakeFiles/3.27.7/CMakeCXXCompiler.cmake \ + CMakeFiles/3.27.7/CMakeRCCompiler.cmake \ + CMakeFiles/3.27.7/CMakeSystem.cmake \ + app_autogen/moc_predefs.h \ + A:/workspace/special-broccoli/app/main.cpp \ + A:/workspace/special-broccoli/app/mainwindow.cpp \ + A:/workspace/special-broccoli/app/mainwindow.h \ + A:/workspace/special-broccoli/app/mainwindow.ui \ + A:/workspace/special-broccoli/app/match.cpp \ + A:/workspace/special-broccoli/app/match.h \ + A:/workspace/special-broccoli/app/matchresult.cpp \ + A:/workspace/special-broccoli/app/matchresult.h \ + A:/workspace/special-broccoli/app/matchschedule.cpp \ + A:/workspace/special-broccoli/app/matchschedule.h \ + A:/workspace/special-broccoli/app/player.cpp \ + A:/workspace/special-broccoli/app/player.h \ + A:/workspace/special-broccoli/app/playerbox.cpp \ + A:/workspace/special-broccoli/app/playerbox.h \ + A:/workspace/special-broccoli/app/playerbox.ui \ + A:/workspace/special-broccoli/app/scoreboard.cpp \ + A:/workspace/special-broccoli/app/scoreboard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QObject \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QSignalMapper \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QString \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QVector \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qabstractitemmodel.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qitemselectionmodel.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qregularexpression.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsignalmapper.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvector.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpen.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextcursor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextdocument.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextformat.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextoption.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qvalidator.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QLineEdit \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QListWidget \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QMainWindow \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QPushButton \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QSpinBox \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractbutton.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemdelegate.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemview.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractscrollarea.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractslider.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractspinbox.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qframe.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlineedit.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlistview.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlistwidget.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qmainwindow.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qpushbutton.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qrubberband.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qslider.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qspinbox.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qstyle.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qstyleoption.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtabbar.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtabwidget.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/QtInstallPaths.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessTargets.cmake \ + C:/Qt/Tools/CMake_64/bin/cmake.exe \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeParseArguments.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeRCInformation.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckIncludeFileCXX.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckLibraryExists.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindThreads.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindVulkan.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/GNUInstallDirs.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX-ABI.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-windres.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/climits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/rules.ninja b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/rules.ninja new file mode 100644 index 0000000..d5d7a05 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/rules.ninja @@ -0,0 +1,81 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.27 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: app +# Configurations: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__app_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Qt\Tools\mingw1120_64\bin\g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX executable. + +rule CXX_EXECUTABLE_LINKER__app_Debug + command = cmd.exe /C "$PRE_LINK && C:\Qt\Tools\mingw1120_64\bin\g++.exe $FLAGS $LINK_FLAGS $in -o $TARGET_FILE -Wl,--out-implib,$TARGET_IMPLIB -Wl,--major-image-version,0,--minor-image-version,0 $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = C:\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SA:\workspace\special-broccoli\app -BA:\workspace\special-broccoli\app\build\Desktop_Qt_6_7_0_MinGW_64_bit-Debug + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for re-checking globbed directories. + +rule VERIFY_GLOBS + command = C:\Qt\Tools\CMake_64\bin\cmake.exe -P A:\workspace\special-broccoli\app\build\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\CMakeFiles\VerifyGlobs.cmake + description = Re-checking globbed directories... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = C:\Qt\Tools\CMake_64\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Qt\Tools\Ninja\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\Qt\Tools\Ninja\ninja.exe -t targets + description = All primary targets available: + diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log new file mode 100644 index 0000000..68cd4a7 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log @@ -0,0 +1,3 @@ +Start testing: May 23 06:40 Maroc (heure d’été) +---------------------------------------------------------- +End testing: May 23 06:40 Maroc (heure d’été) diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_mainwindow.cpp.d b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_mainwindow.cpp.d new file mode 100644 index 0000000..92ee15c --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_mainwindow.cpp.d @@ -0,0 +1,394 @@ +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_mainwindow.cpp: A:/workspace/special-broccoli/app/mainwindow.h \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h \ + A:/workspace/special-broccoli/app/MatchResult.h \ + A:/workspace/special-broccoli/app/Player.h \ + A:/workspace/special-broccoli/app/PlayerBox.h \ + A:/workspace/special-broccoli/app/Scoreboard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QObject \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QSignalMapper \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QString \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QVector \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qabstractitemmodel.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qitemselectionmodel.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qregularexpression.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsignalmapper.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvector.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpen.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextcursor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextdocument.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextformat.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextoption.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qvalidator.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QLineEdit \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QListWidget \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QMainWindow \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QPushButton \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QSpinBox \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractbutton.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemdelegate.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemview.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractscrollarea.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractslider.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractspinbox.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qframe.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlineedit.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlistview.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlistwidget.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qmainwindow.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qpushbutton.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qrubberband.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qslider.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qspinbox.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qstyle.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qstyleoption.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtabbar.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtabwidget.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/climits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_match.cpp.d b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_match.cpp.d new file mode 100644 index 0000000..57026e5 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_match.cpp.d @@ -0,0 +1,302 @@ +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_match.cpp: A:/workspace/special-broccoli/app/match.h \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h \ + A:/workspace/special-broccoli/app/MatchResult.h \ + A:/workspace/special-broccoli/app/Player.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QObject \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QString \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_matchresult.cpp.d b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_matchresult.cpp.d new file mode 100644 index 0000000..8c960b3 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_matchresult.cpp.d @@ -0,0 +1,301 @@ +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_matchresult.cpp: A:/workspace/special-broccoli/app/matchresult.h \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h \ + A:/workspace/special-broccoli/app/Player.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QObject \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QString \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_matchschedule.cpp.d b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_matchschedule.cpp.d new file mode 100644 index 0000000..5489e9a --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_matchschedule.cpp.d @@ -0,0 +1,305 @@ +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_matchschedule.cpp: A:/workspace/special-broccoli/app/matchschedule.h \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h \ + A:/workspace/special-broccoli/app/Match.h \ + A:/workspace/special-broccoli/app/MatchResult.h \ + A:/workspace/special-broccoli/app/Player.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QObject \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QString \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QVector \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvector.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_player.cpp.d b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_player.cpp.d new file mode 100644 index 0000000..22bed13 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_player.cpp.d @@ -0,0 +1,300 @@ +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_player.cpp: A:/workspace/special-broccoli/app/player.h \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QObject \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QString \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_playerbox.cpp.d b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_playerbox.cpp.d new file mode 100644 index 0000000..47c7c73 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_playerbox.cpp.d @@ -0,0 +1,385 @@ +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_playerbox.cpp: A:/workspace/special-broccoli/app/playerbox.h \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QSignalMapper \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QString \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qabstractitemmodel.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qitemselectionmodel.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qregularexpression.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsignalmapper.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpen.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextcursor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextdocument.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextformat.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextoption.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qvalidator.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QLineEdit \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QListWidget \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QPushButton \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QSpinBox \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractbutton.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemdelegate.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemview.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractscrollarea.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractslider.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractspinbox.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qframe.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlineedit.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlistview.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlistwidget.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qpushbutton.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qrubberband.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qslider.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qspinbox.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qstyle.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qstyleoption.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtabbar.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtabwidget.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/climits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_scoreboard.cpp.d b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_scoreboard.cpp.d new file mode 100644 index 0000000..41ba7ad --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_scoreboard.cpp.d @@ -0,0 +1,304 @@ +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_scoreboard.cpp: A:/workspace/special-broccoli/app/scoreboard.h \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h \ + A:/workspace/special-broccoli/app/MatchResult.h \ + A:/workspace/special-broccoli/app/Player.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QObject \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QString \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QVector \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvector.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_ui_playerbox.cpp.d b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_ui_playerbox.cpp.d new file mode 100644 index 0000000..54efc62 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_ui_playerbox.cpp.d @@ -0,0 +1,349 @@ +A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/EWIEGA46WW/moc_ui_playerbox.cpp: A:/workspace/special-broccoli/app/ui_playerbox.h \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/climits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/deps b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/deps new file mode 100644 index 0000000..eafe1e7 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/deps @@ -0,0 +1,590 @@ +app_autogen/timestamp: \ + A:/workspace/special-broccoli/app/CMakeLists.txt \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeCXXCompiler.cmake \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeRCCompiler.cmake \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/3.27.7/CMakeSystem.cmake \ + A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h \ + A:/workspace/special-broccoli/app/main.cpp \ + A:/workspace/special-broccoli/app/mainwindow.cpp \ + A:/workspace/special-broccoli/app/mainwindow.h \ + A:/workspace/special-broccoli/app/match.cpp \ + A:/workspace/special-broccoli/app/match.h \ + A:/workspace/special-broccoli/app/matchresult.cpp \ + A:/workspace/special-broccoli/app/matchresult.h \ + A:/workspace/special-broccoli/app/matchschedule.cpp \ + A:/workspace/special-broccoli/app/matchschedule.h \ + A:/workspace/special-broccoli/app/player.cpp \ + A:/workspace/special-broccoli/app/player.h \ + A:/workspace/special-broccoli/app/playerbox.cpp \ + A:/workspace/special-broccoli/app/playerbox.h \ + A:/workspace/special-broccoli/app/scoreboard.cpp \ + A:/workspace/special-broccoli/app/scoreboard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QObject \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QSignalMapper \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QString \ + C:/Qt/6.7.0/mingw_64/include/QtCore/QVector \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qabstractitemmodel.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qitemselectionmodel.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qregularexpression.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsignalmapper.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qvector.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpen.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextcursor.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextdocument.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextformat.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtextoption.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qvalidator.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + C:/Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QLineEdit \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QListWidget \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QMainWindow \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QPushButton \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QSpinBox \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractbutton.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemdelegate.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemview.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractscrollarea.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractslider.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qabstractspinbox.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qframe.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlineedit.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlistview.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qlistwidget.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qmainwindow.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qpushbutton.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qrubberband.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qslider.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qspinbox.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qstyle.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qstyleoption.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtabbar.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtabwidget.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + C:/Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/QtInstallPaths.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake \ + C:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessTargets.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeParseArguments.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeRCInformation.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckIncludeFileCXX.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckLibraryExists.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindThreads.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindVulkan.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/GNUInstallDirs.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX-ABI.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-windres.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows.cmake \ + C:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/limits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed/syslimits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/algorithm \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/array \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/atomic \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/auto_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward/binders.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bit \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/algorithmfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/align.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocated_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/basic_string.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/char_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/charconv.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/concept_check.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cpp_type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_forced.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/cxxabi_init_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/enable_special_members.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/erase_if.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/exception_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functexcept.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/functional_hash.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hash_bytes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/hashtable_policy.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/invoke.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ios_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/list.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/locale_classes.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/localefwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/memoryfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/move.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/nested_exception.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/node_handle.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ostream_insert.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/parse_numbers.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/postypes.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/predefined_ops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/ptr_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/range_access.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/refwrap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_atomic.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/shared_ptr_base.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/specfun.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_abs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/std_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algo.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_algobase.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_bvector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_construct.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_function.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_heap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_iterator_base_types.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_list.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_multimap.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_numeric.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_pair.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_relops.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tempbuf.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_tree.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_uninitialized.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stl_vector.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stream_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/streambuf_iterator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/string_view.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/stringfwd.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uniform_int_dist.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unique_ptr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/unordered_map.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/uses_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/bits/vector.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cctype \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cerrno \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/chrono \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/climits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/clocale \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cmath \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstddef \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdint \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstdlib \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cstring \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ctime \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/cwchar \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/assertions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/debug/debug.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/exception \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/aligned_buffer.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/alloc_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/atomicity.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/concurrence.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/new_allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/numeric_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/string_conversions.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ext/type_traits.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/functional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/initializer_list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iosfwd \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/iterator \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/limits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/list \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/memory \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/new \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/numeric \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/optional \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/execution_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_memory_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/pstl/glue_numeric_defs.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/ratio \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdexcept \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/stdlib.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/streambuf \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/string_view \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/system_error \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/bessel_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/beta_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/ell_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/exp_integral.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/gamma.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/hypergeometric.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/legendre_function.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_hermite.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/poly_laguerre.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/riemann_zeta.tcc \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tr1/special_function_util.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/tuple \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/type_traits \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/typeinfo \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/unordered_map \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/utility \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/variant \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/vector \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdarg.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdbool.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stddef.h \ + C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/stdint.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/assert.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/ctype.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/errno.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/locale.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/process.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/signal.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/stdio.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/string.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/time.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include/wchar.h \ + A:/workspace/special-broccoli/app/mainwindow.ui \ + A:/workspace/special-broccoli/app/playerbox.ui \ + C:/Qt/Tools/CMake_64/bin/cmake.exe diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h new file mode 100644 index 0000000..7f4aa8b --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/moc_predefs.h @@ -0,0 +1,448 @@ +#define __DBL_MIN_EXP__ (-1021) +#define __cpp_attributes 200809L +#define __cpp_nontype_template_parameter_auto 201606L +#define __UINT_LEAST16_MAX__ 0xffff +#define __ATOMIC_ACQUIRE 2 +#define __FLT128_MAX_10_EXP__ 4932 +#define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F +#define __GCC_IEC_559_COMPLEX 2 +#define __cpp_aggregate_nsdmi 201304L +#define __UINT_LEAST8_TYPE__ unsigned char +#define __SIZEOF_FLOAT80__ 16 +#define __INTMAX_C(c) c ## LL +#define __CHAR_BIT__ 8 +#define __MINGW32__ 1 +#define __UINT8_MAX__ 0xff +#define __SCHAR_WIDTH__ 8 +#define _WIN64 1 +#define __WINT_MAX__ 0xffff +#define __FLT32_MIN_EXP__ (-125) +#define __cpp_static_assert 201411L +#define QT_NEEDS_QMAIN 1 +#define QT_GUI_LIB 1 +#define __ORDER_LITTLE_ENDIAN__ 1234 +#define __SIZE_MAX__ 0xffffffffffffffffULL +#define __WCHAR_MAX__ 0xffff +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 +#define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L) +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 +#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 +#define __GCC_IEC_559 2 +#define __FLT32X_DECIMAL_DIG__ 17 +#define __FLT_EVAL_METHOD__ 0 +#define __cpp_binary_literals 201304L +#define __FLT64_DECIMAL_DIG__ 17 +#define __cpp_noexcept_function_type 201510L +#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 +#define __cpp_variadic_templates 200704L +#define __UINT_FAST64_MAX__ 0xffffffffffffffffULL +#define __SIG_ATOMIC_TYPE__ int +#define __DBL_MIN_10_EXP__ (-307) +#define __FINITE_MATH_ONLY__ 0 +#define __cpp_variable_templates 201304L +#define __FLT32X_MAX_EXP__ 1024 +#define __FLT32_HAS_DENORM__ 1 +#define __UINT_FAST8_MAX__ 0xff +#define __cpp_rvalue_reference 200610L +#define __cpp_nested_namespace_definitions 201411L +#define _stdcall __attribute__((__stdcall__)) +#define __DEC64_MAX_EXP__ 385 +#define __INT8_C(c) c +#define __INT_LEAST8_WIDTH__ 8 +#define __cpp_variadic_using 201611L +#define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL +#define __INT_LEAST8_MAX__ 0x7f +#define __cpp_capture_star_this 201603L +#define __SHRT_MAX__ 0x7fff +#define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __FLT64X_MAX_10_EXP__ 4932 +#define __cpp_if_constexpr 201606L +#define __LDBL_IS_IEC_60559__ 2 +#define __FLT64X_HAS_QUIET_NAN__ 1 +#define __UINT_LEAST8_MAX__ 0xff +#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 +#define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 +#define __UINTMAX_TYPE__ long long unsigned int +#define __DEC32_EPSILON__ 1E-6DF +#define __FLT_EVAL_METHOD_TS_18661_3__ 0 +#define __UINT32_MAX__ 0xffffffffU +#define __GXX_EXPERIMENTAL_CXX0X__ 1 +#define __FLT128_MIN_EXP__ (-16381) +#define __WINT_MIN__ 0 +#define __FLT128_MIN_10_EXP__ (-4931) +#define __FLT32X_IS_IEC_60559__ 2 +#define __INT_LEAST16_WIDTH__ 16 +#define MINGW_HAS_SECURE_API 1 +#define __SCHAR_MAX__ 0x7f +#define __FLT128_MANT_DIG__ 113 +#define __WCHAR_MIN__ 0 +#define __INT64_C(c) c ## LL +#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 +#define _UNICODE 1 +#define __FLT32X_MANT_DIG__ 53 +#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 +#define __cpp_aligned_new 201606L +#define __USER_LABEL_PREFIX__ +#define __FLT32_MAX_10_EXP__ 38 +#define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x +#define __STDC_HOSTED__ 1 +#define __DEC64_MIN_EXP__ (-382) +#define __WIN64 1 +#define __cpp_decltype_auto 201304L +#define __DBL_DIG__ 15 +#define __FLT32_DIG__ 6 +#define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F +#define __GXX_WEAK__ 1 +#define __SHRT_WIDTH__ 16 +#define __FLT32_IS_IEC_60559__ 2 +#define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L +#define __DBL_IS_IEC_60559__ 2 +#define __DEC32_MAX__ 9.999999E96DF +#define __cpp_threadsafe_static_init 200806L +#define __cpp_enumerator_attributes 201411L +#define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x +#define __FLT32X_HAS_INFINITY__ 1 +#define __INT32_MAX__ 0x7fffffff +#define __INT_WIDTH__ 32 +#define __SIZEOF_LONG__ 4 +#define __UINT16_C(c) c +#define UNICODE 1 +#define __DECIMAL_DIG__ 21 +#define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 +#define __INT16_MAX__ 0x7fff +#define __FLT64_MIN_EXP__ (-1021) +#define __FLT64X_MIN_10_EXP__ (-4931) +#define __LDBL_HAS_QUIET_NAN__ 1 +#define __FLT64_MANT_DIG__ 53 +#define _REENTRANT 1 +#define __FLT64X_MANT_DIG__ 64 +#define __GNUC__ 11 +#define _cdecl __attribute__((__cdecl__)) +#define __GXX_RTTI 1 +#define __MMX__ 1 +#define __FLT_HAS_DENORM__ 1 +#define __SIZEOF_LONG_DOUBLE__ 16 +#define __BIGGEST_ALIGNMENT__ 16 +#define __STDC_UTF_16__ 1 +#define __FLT64_MAX_10_EXP__ 308 +#define __cpp_delegating_constructors 200604L +#define __FLT32_HAS_INFINITY__ 1 +#define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define _thiscall __attribute__((__thiscall__)) +#define __cpp_raw_strings 200710L +#define __INT_FAST32_MAX__ 0x7fffffff +#define __WINNT 1 +#define __DBL_HAS_INFINITY__ 1 +#define __SIZEOF_FLOAT__ 4 +#define __WINNT__ 1 +#define __HAVE_SPECULATION_SAFE_VALUE 1 +#define __cpp_fold_expressions 201603L +#define __DEC32_MIN_EXP__ (-94) +#define __INTPTR_WIDTH__ 64 +#define __FLT64X_HAS_INFINITY__ 1 +#define __UINT_LEAST32_MAX__ 0xffffffffU +#define __FLT32X_HAS_DENORM__ 1 +#define __INT_FAST16_TYPE__ short int +#define __MMX_WITH_SSE__ 1 +#define _fastcall __attribute__((__fastcall__)) +#define __LDBL_HAS_DENORM__ 1 +#define QT_WIDGETS_LIB 1 +#define __cplusplus 201703L +#define __cpp_ref_qualifiers 200710L +#define __DEC32_MIN__ 1E-95DF +#define __DEPRECATED 1 +#define __cpp_rvalue_references 200610L +#define __DBL_MAX_EXP__ 1024 +#define __WCHAR_WIDTH__ 16 +#define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __DEC128_EPSILON__ 1E-33DL +#define __SSE2_MATH__ 1 +#define __ATOMIC_HLE_RELEASE 131072 +#define __WIN32__ 1 +#define __PTRDIFF_MAX__ 0x7fffffffffffffffLL +#define __amd64 1 +#define __tune_core2__ 1 +#define __ATOMIC_HLE_ACQUIRE 65536 +#define __GNUG__ 11 +#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL +#define __SIZEOF_SIZE_T__ 8 +#define __cpp_nsdmi 200809L +#define __FLT64X_MIN_EXP__ (-16381) +#define __SIZEOF_WINT_T__ 2 +#define __LONG_LONG_WIDTH__ 64 +#define __cpp_initializer_lists 200806L +#define __FLT32_MAX_EXP__ 128 +#define __cpp_hex_float 201603L +#define __GXX_ABI_VERSION 1016 +#define __FLT128_HAS_INFINITY__ 1 +#define __FLT_MIN_EXP__ (-125) +#define __x86_64 1 +#define __cpp_lambdas 200907L +#define __INT_FAST64_TYPE__ long long int +#define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 +#define __cpp_template_auto 201606L +#define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L) +#define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 +#define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __SIZEOF_POINTER__ 8 +#define __SIZE_TYPE__ long long unsigned int +#define __DBL_HAS_QUIET_NAN__ 1 +#define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x +#define __DECIMAL_BID_FORMAT__ 1 +#define __GXX_TYPEINFO_EQUALITY_INLINE 0 +#define __FLT64_MIN_10_EXP__ (-307) +#define __FLT64X_DECIMAL_DIG__ 21 +#define __DEC128_MIN__ 1E-6143DL +#define __REGISTER_PREFIX__ +#define __UINT16_MAX__ 0xffff +#define __cdecl __attribute__((__cdecl__)) +#define __LDBL_HAS_INFINITY__ 1 +#define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 +#define __UINT8_TYPE__ unsigned char +#define __FLT_DIG__ 6 +#define __NO_INLINE__ 1 +#define __DEC_EVAL_METHOD__ 2 +#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL +#define __FLT_MANT_DIG__ 24 +#define __LDBL_DECIMAL_DIG__ 21 +#define __VERSION__ "11.2.0" +#define __UINT64_C(c) c ## ULL +#define __cpp_unicode_characters 201411L +#define _WIN32 1 +#define __SEH__ 1 +#define __INT_LEAST32_MAX__ 0x7fffffff +#define __GCC_ATOMIC_INT_LOCK_FREE 2 +#define __FLT128_MAX_EXP__ 16384 +#define __FLT32_MANT_DIG__ 24 +#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define SIZEOF_DPTR (sizeof(void*)) +#define __cpp_aggregate_bases 201603L +#define __FLT128_HAS_DENORM__ 1 +#define __FLT32_DECIMAL_DIG__ 9 +#define __FLT128_DIG__ 33 +#define __INT32_C(c) c +#define __DEC64_EPSILON__ 1E-15DD +#define __ORDER_PDP_ENDIAN__ 3412 +#define __DEC128_MIN_EXP__ (-6142) +#define __INT_FAST32_TYPE__ int +#define __UINT_LEAST16_TYPE__ short unsigned int +#define __DBL_HAS_DENORM__ 1 +#define __cpp_rtti 199711L +#define __UINT64_MAX__ 0xffffffffffffffffULL +#define __FLT_IS_IEC_60559__ 2 +#define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-16LE" +#define __FLT64X_DIG__ 18 +#define __INT8_TYPE__ signed char +#define __cpp_digit_separators 201309L +#define __GCC_ASM_FLAG_OUTPUTS__ 1 +#define __UINT32_TYPE__ unsigned int +#define __FLT_RADIX__ 2 +#define __INT_LEAST16_TYPE__ short int +#define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L +#define __UINTMAX_C(c) c ## ULL +#define __GLIBCXX_BITSIZE_INT_N_0 128 +#define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x +#define __SIG_ATOMIC_MAX__ 0x7fffffff +#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 +#define __SIZEOF_PTRDIFF_T__ 8 +#define __LDBL_DIG__ 18 +#define __FLT64_IS_IEC_60559__ 2 +#define __x86_64__ 1 +#define __FLT32X_MIN_EXP__ (-1021) +#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF +#define __MSVCRT__ 1 +#define __INT_FAST16_MAX__ 0x7fff +#define __FLT64_DIG__ 15 +#define __UINT_FAST32_MAX__ 0xffffffffU +#define __UINT_LEAST64_TYPE__ long long unsigned int +#define __FLT_HAS_QUIET_NAN__ 1 +#define __FLT_MAX_10_EXP__ 38 +#define __LONG_MAX__ 0x7fffffffL +#define __FLT64X_HAS_DENORM__ 1 +#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL +#define __FLT_HAS_INFINITY__ 1 +#define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" +#define __cpp_unicode_literals 200710L +#define __UINT_FAST16_TYPE__ short unsigned int +#define __DEC64_MAX__ 9.999999999999999E384DD +#define __INT_FAST32_WIDTH__ 32 +#define __CHAR16_TYPE__ short unsigned int +#define __PRAGMA_REDEFINE_EXTNAME 1 +#define __SIZE_WIDTH__ 64 +#define __SEG_FS 1 +#define __INT_LEAST16_MAX__ 0x7fff +#define __DEC64_MANT_DIG__ 16 +#define __INT64_MAX__ 0x7fffffffffffffffLL +#define __SEG_GS 1 +#define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 +#define __SIG_ATOMIC_WIDTH__ 32 +#define __INT_LEAST64_TYPE__ long long int +#define __INT16_TYPE__ short int +#define __INT_LEAST8_TYPE__ signed char +#define __nocona__ 1 +#define __cpp_structured_bindings 201606L +#define __SIZEOF_INT__ 4 +#define __DEC32_MAX_EXP__ 97 +#define __INT_FAST8_MAX__ 0x7f +#define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __INTPTR_MAX__ 0x7fffffffffffffffLL +#define __cpp_sized_deallocation 201309L +#define __cpp_guaranteed_copy_elision 201606L +#define __FLT64_HAS_QUIET_NAN__ 1 +#define __stdcall __attribute__((__stdcall__)) +#define __FLT32_MIN_10_EXP__ (-37) +#define __EXCEPTIONS 1 +#define __GXX_MERGED_TYPEINFO_NAMES 0 +#define __PTRDIFF_WIDTH__ 64 +#define __LDBL_MANT_DIG__ 64 +#define __cpp_range_based_for 201603L +#define __FLT64_HAS_INFINITY__ 1 +#define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16 +#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) +#define __GCC_ATOMIC_LONG_LOCK_FREE 2 +#define __cpp_nontype_template_args 201411L +#define __DEC32_MANT_DIG__ 7 +#define __cpp_return_type_deduction 201304L +#define __INTPTR_TYPE__ long long int +#define __UINT16_TYPE__ short unsigned int +#define __WCHAR_TYPE__ short unsigned int +#define __pic__ 1 +#define __UINTPTR_MAX__ 0xffffffffffffffffULL +#define __INT_FAST64_WIDTH__ 64 +#define __cpp_decltype 200707L +#define __INT_FAST64_MAX__ 0x7fffffffffffffffLL +#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 +#define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F +#define __FLT64X_MAX_EXP__ 16384 +#define __UINT_FAST64_TYPE__ long long unsigned int +#define __cpp_inline_variables 201606L +#define __INT_MAX__ 0x7fffffff +#define WIN32 1 +#define __nocona 1 +#define __code_model_medium__ 1 +#define __INT64_TYPE__ long long int +#define __FLT_MAX_EXP__ 128 +#define WIN64 1 +#define __ORDER_BIG_ENDIAN__ 4321 +#define __DBL_MANT_DIG__ 53 +#define __cpp_inheriting_constructors 201511L +#define QT_CORE_LIB 1 +#define __SIZEOF_FLOAT128__ 16 +#define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL +#define __DEC64_MIN__ 1E-383DD +#define __WINT_TYPE__ short unsigned int +#define __UINT_LEAST32_TYPE__ unsigned int +#define __SIZEOF_SHORT__ 2 +#define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __SSE__ 1 +#define __LDBL_MIN_EXP__ (-16381) +#define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __amd64__ 1 +#define __WINT_WIDTH__ 16 +#define __INT_LEAST64_WIDTH__ 64 +#define __LDBL_MAX_EXP__ 16384 +#define __FLT32X_MAX_10_EXP__ 308 +#define __WIN32 1 +#define __SIZEOF_INT128__ 16 +#define __FLT64X_IS_IEC_60559__ 2 +#define __WCHAR_UNSIGNED__ 1 +#define __LDBL_MAX_10_EXP__ 4932 +#define __ATOMIC_RELAXED 0 +#define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L) +#define __thiscall __attribute__((__thiscall__)) +#define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 +#define __UINT8_C(c) c +#define __FLT64_MAX_EXP__ 1024 +#define __INT_LEAST32_TYPE__ int +#define __SIZEOF_WCHAR_T__ 2 +#define __GNUC_PATCHLEVEL__ 0 +#define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __FLT128_HAS_QUIET_NAN__ 1 +#define __INTMAX_MAX__ 0x7fffffffffffffffLL +#define __SSE3__ 1 +#define __INT_FAST8_TYPE__ signed char +#define __fastcall __attribute__((__fastcall__)) +#define __cpp_namespace_attributes 201411L +#define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x +#define __STDCPP_THREADS__ 1 +#define __GNUC_STDC_INLINE__ 1 +#define __FLT64_HAS_DENORM__ 1 +#define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 +#define __DBL_DECIMAL_DIG__ 17 +#define __STDC_UTF_32__ 1 +#define __INT_FAST8_WIDTH__ 8 +#define __FXSR__ 1 +#define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __DBL_NORM_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define __MINGW64__ 1 +#define __INTMAX_WIDTH__ 64 +#define __cpp_runtime_arrays 198712L +#define __UINT64_TYPE__ long long unsigned int +#define __UINT32_C(c) c ## U +#define __cpp_alias_templates 200704L +#define WINNT 1 +#define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F +#define __FLT128_IS_IEC_60559__ 2 +#define __INT8_MAX__ 0x7f +#define __LONG_WIDTH__ 32 +#define __PIC__ 1 +#define __UINT_FAST32_TYPE__ unsigned int +#define _ENABLE_EXTENDED_ALIGNED_STORAGE 1 +#define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __CHAR32_TYPE__ unsigned int +#define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F +#define __cpp_constexpr 201603L +#define __SSE2__ 1 +#define __cpp_deduction_guides 201703L +#define __INT32_TYPE__ int +#define __SIZEOF_DOUBLE__ 8 +#define __cpp_exceptions 199711L +#define __FLT_MIN_10_EXP__ (-37) +#define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 +#define __INT_LEAST32_WIDTH__ 32 +#define __INTMAX_TYPE__ long long int +#define _INTEGRAL_MAX_BITS 64 +#define __DEC128_MAX_EXP__ 6145 +#define __FLT32X_HAS_QUIET_NAN__ 1 +#define __ATOMIC_CONSUME 1 +#define __GNUC_MINOR__ 2 +#define __GLIBCXX_TYPE_INT_N_0 __int128 +#define __INT_FAST16_WIDTH__ 16 +#define __UINTMAX_MAX__ 0xffffffffffffffffULL +#define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x +#define __cpp_template_template_args 201611L +#define __DBL_MAX_10_EXP__ 308 +#define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L +#define __INT16_C(c) c +#define __STDC__ 1 +#define __FLT32X_DIG__ 15 +#define __PTRDIFF_TYPE__ long long int +#define __ATOMIC_SEQ_CST 5 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 1 +#define __FLT32X_MIN_10_EXP__ (-307) +#define __UINTPTR_TYPE__ long long unsigned int +#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD +#define __DEC128_MANT_DIG__ 34 +#define __LDBL_MIN_10_EXP__ (-4931) +#define __cpp_generic_lambdas 201304L +#define __SSE_MATH__ 1 +#define __SIZEOF_LONG_LONG__ 8 +#define __cpp_user_defined_literals 200809L +#define __FLT128_DECIMAL_DIG__ 36 +#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 +#define __FLT32_HAS_QUIET_NAN__ 1 +#define __FLT_DECIMAL_DIG__ 9 +#define __UINT_FAST16_MAX__ 0xffff +#define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 +#define __UINT_FAST8_TYPE__ unsigned char +#define __WIN64__ 1 +#define __cpp_init_captures 201304L +#define __ATOMIC_ACQ_REL 4 +#define __ATOMIC_RELEASE 3 +#define __declspec(x) __attribute__((x)) diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/mocs_compilation.cpp b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/mocs_compilation.cpp new file mode 100644 index 0000000..8c10395 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/mocs_compilation.cpp @@ -0,0 +1,8 @@ +// This file is autogenerated. Changes will be overwritten. +#include "EWIEGA46WW/moc_mainwindow.cpp" +#include "EWIEGA46WW/moc_match.cpp" +#include "EWIEGA46WW/moc_matchresult.cpp" +#include "EWIEGA46WW/moc_matchschedule.cpp" +#include "EWIEGA46WW/moc_player.cpp" +#include "EWIEGA46WW/moc_playerbox.cpp" +#include "EWIEGA46WW/moc_scoreboard.cpp" diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/timestamp b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/timestamp new file mode 100644 index 0000000..e69de29 diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ball.svg b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ball.svg new file mode 100644 index 0000000..4ce0021 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/build.ninja b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/build.ninja new file mode 100644 index 0000000..dad4b7b --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/build.ninja @@ -0,0 +1,287 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.27 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: app +# Configurations: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.8 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Debug +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = A$:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ +# ============================================================================= +# Object build statements for EXECUTABLE target app + + +############################################# +# Order-only phony target for app + +build cmake_object_order_depends_target_app: phony || app_autogen app_autogen/mocs_compilation.cpp app_autogen/timestamp app_autogen_timestamp_deps + +build CMakeFiles/app.dir/app_autogen/mocs_compilation.cpp.obj: CXX_COMPILER__app_unscanned_Debug A$:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/mocs_compilation.cpp || cmake_object_order_depends_target_app + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = CMakeFiles\app.dir\app_autogen\mocs_compilation.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IA:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include -isystem C:/Qt/6.7.0/mingw_64/include/QtCore -isystem C:/Qt/6.7.0/mingw_64/include -isystem C:/Qt/6.7.0/mingw_64/mkspecs/win32-g++ -isystem C:/Qt/6.7.0/mingw_64/include/QtWidgets -isystem C:/Qt/6.7.0/mingw_64/include/QtGui -isystem C:/VulkanSDK/1.3.283.0/Include + OBJECT_DIR = CMakeFiles\app.dir + OBJECT_FILE_DIR = CMakeFiles\app.dir\app_autogen + +build CMakeFiles/app.dir/main.cpp.obj: CXX_COMPILER__app_unscanned_Debug A$:/workspace/special-broccoli/app/main.cpp || cmake_object_order_depends_target_app + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = CMakeFiles\app.dir\main.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IA:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include -isystem C:/Qt/6.7.0/mingw_64/include/QtCore -isystem C:/Qt/6.7.0/mingw_64/include -isystem C:/Qt/6.7.0/mingw_64/mkspecs/win32-g++ -isystem C:/Qt/6.7.0/mingw_64/include/QtWidgets -isystem C:/Qt/6.7.0/mingw_64/include/QtGui -isystem C:/VulkanSDK/1.3.283.0/Include + OBJECT_DIR = CMakeFiles\app.dir + OBJECT_FILE_DIR = CMakeFiles\app.dir + +build CMakeFiles/app.dir/mainwindow.cpp.obj: CXX_COMPILER__app_unscanned_Debug A$:/workspace/special-broccoli/app/mainwindow.cpp || cmake_object_order_depends_target_app + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = CMakeFiles\app.dir\mainwindow.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IA:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include -isystem C:/Qt/6.7.0/mingw_64/include/QtCore -isystem C:/Qt/6.7.0/mingw_64/include -isystem C:/Qt/6.7.0/mingw_64/mkspecs/win32-g++ -isystem C:/Qt/6.7.0/mingw_64/include/QtWidgets -isystem C:/Qt/6.7.0/mingw_64/include/QtGui -isystem C:/VulkanSDK/1.3.283.0/Include + OBJECT_DIR = CMakeFiles\app.dir + OBJECT_FILE_DIR = CMakeFiles\app.dir + +build CMakeFiles/app.dir/playerbox.cpp.obj: CXX_COMPILER__app_unscanned_Debug A$:/workspace/special-broccoli/app/playerbox.cpp || cmake_object_order_depends_target_app + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = CMakeFiles\app.dir\playerbox.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IA:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include -isystem C:/Qt/6.7.0/mingw_64/include/QtCore -isystem C:/Qt/6.7.0/mingw_64/include -isystem C:/Qt/6.7.0/mingw_64/mkspecs/win32-g++ -isystem C:/Qt/6.7.0/mingw_64/include/QtWidgets -isystem C:/Qt/6.7.0/mingw_64/include/QtGui -isystem C:/VulkanSDK/1.3.283.0/Include + OBJECT_DIR = CMakeFiles\app.dir + OBJECT_FILE_DIR = CMakeFiles\app.dir + +build CMakeFiles/app.dir/scoreboard.cpp.obj: CXX_COMPILER__app_unscanned_Debug A$:/workspace/special-broccoli/app/scoreboard.cpp || cmake_object_order_depends_target_app + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = CMakeFiles\app.dir\scoreboard.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IA:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include -isystem C:/Qt/6.7.0/mingw_64/include/QtCore -isystem C:/Qt/6.7.0/mingw_64/include -isystem C:/Qt/6.7.0/mingw_64/mkspecs/win32-g++ -isystem C:/Qt/6.7.0/mingw_64/include/QtWidgets -isystem C:/Qt/6.7.0/mingw_64/include/QtGui -isystem C:/VulkanSDK/1.3.283.0/Include + OBJECT_DIR = CMakeFiles\app.dir + OBJECT_FILE_DIR = CMakeFiles\app.dir + +build CMakeFiles/app.dir/matchui.cpp.obj: CXX_COMPILER__app_unscanned_Debug A$:/workspace/special-broccoli/app/matchui.cpp || cmake_object_order_depends_target_app + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = CMakeFiles\app.dir\matchui.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IA:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/include -isystem C:/Qt/6.7.0/mingw_64/include/QtCore -isystem C:/Qt/6.7.0/mingw_64/include -isystem C:/Qt/6.7.0/mingw_64/mkspecs/win32-g++ -isystem C:/Qt/6.7.0/mingw_64/include/QtWidgets -isystem C:/Qt/6.7.0/mingw_64/include/QtGui -isystem C:/VulkanSDK/1.3.283.0/Include + OBJECT_DIR = CMakeFiles\app.dir + OBJECT_FILE_DIR = CMakeFiles\app.dir + + +# ============================================================================= +# Link build statements for EXECUTABLE target app + + +############################################# +# Link the executable app.exe + +build app.exe: CXX_EXECUTABLE_LINKER__app_Debug CMakeFiles/app.dir/app_autogen/mocs_compilation.cpp.obj CMakeFiles/app.dir/main.cpp.obj CMakeFiles/app.dir/mainwindow.cpp.obj CMakeFiles/app.dir/playerbox.cpp.obj CMakeFiles/app.dir/scoreboard.cpp.obj CMakeFiles/app.dir/matchui.cpp.obj | C$:/Qt/6.7.0/mingw_64/lib/libQt6Widgets.a C$:/Qt/6.7.0/mingw_64/lib/libQt6Gui.a C$:/Qt/6.7.0/mingw_64/lib/libQt6Core.a C$:/Qt/6.7.0/mingw_64/lib/libQt6EntryPoint.a || app_autogen app_autogen_timestamp_deps + FLAGS = -DQT_QML_DEBUG -g + LINK_FLAGS = -mwindows + LINK_LIBRARIES = C:/Qt/6.7.0/mingw_64/lib/libQt6Widgets.a C:/Qt/6.7.0/mingw_64/lib/libQt6Gui.a C:/Qt/6.7.0/mingw_64/lib/libQt6Core.a -lmpr -luserenv -lmingw32 C:/Qt/6.7.0/mingw_64/lib/libQt6EntryPoint.a -lshell32 -ld3d11 -ldxgi -ldxguid -ld3d12 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + OBJECT_DIR = CMakeFiles\app.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = app.exe + TARGET_IMPLIB = libapp.dll.a + TARGET_PDB = app.exe.dbg + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D A:\workspace\special-broccoli\app\build\Desktop_Qt_6_7_0_MinGW_64_bit-Debug && C:\Qt\Tools\CMake_64\bin\cmake-gui.exe -SA:\workspace\special-broccoli\app -BA:\workspace\special-broccoli\app\build\Desktop_Qt_6_7_0_MinGW_64_bit-Debug" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D A:\workspace\special-broccoli\app\build\Desktop_Qt_6_7_0_MinGW_64_bit-Debug && C:\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SA:\workspace\special-broccoli\app -BA:\workspace\special-broccoli\app\build\Desktop_Qt_6_7_0_MinGW_64_bit-Debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build list_install_components: phony + + +############################################# +# Utility command for install + +build CMakeFiles/install.util: CUSTOM_COMMAND all + COMMAND = cmd.exe /C "cd /D A:\workspace\special-broccoli\app\build\Desktop_Qt_6_7_0_MinGW_64_bit-Debug && C:\Qt\Tools\CMake_64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build install: phony CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/install/local.util: CUSTOM_COMMAND all + COMMAND = cmd.exe /C "cd /D A:\workspace\special-broccoli\app\build\Desktop_Qt_6_7_0_MinGW_64_bit-Debug && C:\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local: phony CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/install/strip.util: CUSTOM_COMMAND all + COMMAND = cmd.exe /C "cd /D A:\workspace\special-broccoli\app\build\Desktop_Qt_6_7_0_MinGW_64_bit-Debug && C:\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip: phony CMakeFiles/install/strip.util + + +############################################# +# Utility command for app_autogen_timestamp_deps + +build app_autogen_timestamp_deps: phony CMakeFiles/app_autogen_timestamp_deps + + +############################################# +# Utility command for app_autogen + +build app_autogen: phony CMakeFiles/app_autogen app_autogen/include/ui_playerbox.h app_autogen/include/ui_scoreboard.h app_autogen/include/ui_mainwindow.h app_autogen/include/ui_matchui.h app_autogen/timestamp app_autogen/mocs_compilation.cpp app_autogen_timestamp_deps + + +############################################# +# Custom command for app_autogen\timestamp + +build app_autogen/timestamp app_autogen/mocs_compilation.cpp | ${cmake_ninja_workdir}app_autogen/timestamp ${cmake_ninja_workdir}app_autogen/mocs_compilation.cpp: CUSTOM_COMMAND C$:/Qt/6.7.0/mingw_64/./bin/moc.exe C$:/Qt/6.7.0/mingw_64/./bin/uic.exe || app_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D A:\workspace\special-broccoli\app\build\Desktop_Qt_6_7_0_MinGW_64_bit-Debug && C:\Qt\Tools\CMake_64\bin\cmake.exe -E cmake_autogen A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/app_autogen.dir/AutogenInfo.json Debug && C:\Qt\Tools\CMake_64\bin\cmake.exe -E touch A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/timestamp && C:\Qt\Tools\CMake_64\bin\cmake.exe -E cmake_transform_depfile Ninja gccdepfile A:/workspace/special-broccoli/app A:/workspace/special-broccoli/app A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app_autogen/deps A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/d/fc12893de09678e06730cb32dacb6f2c33ae9fd1f149455b8f8456ea5f65e286.d" + DESC = Automatic MOC and UIC for target app + depfile = A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/d/fc12893de09678e06730cb32dacb6f2c33ae9fd1f149455b8f8456ea5f65e286.d + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\app_autogen_timestamp_deps + +build CMakeFiles/app_autogen_timestamp_deps | ${cmake_ninja_workdir}CMakeFiles/app_autogen_timestamp_deps: phony C$:/Qt/6.7.0/mingw_64/lib/libQt6Core.a C$:/Qt/6.7.0/mingw_64/./bin/moc.exe C$:/Qt/6.7.0/mingw_64/./bin/uic.exe C$:/Qt/6.7.0/mingw_64/lib/libQt6Widgets.a + + +############################################# +# Phony custom command for CMakeFiles\app_autogen + +build CMakeFiles/app_autogen app_autogen/include/ui_playerbox.h app_autogen/include/ui_scoreboard.h app_autogen/include/ui_mainwindow.h app_autogen/include/ui_matchui.h | ${cmake_ninja_workdir}CMakeFiles/app_autogen ${cmake_ninja_workdir}app_autogen/include/ui_playerbox.h ${cmake_ninja_workdir}app_autogen/include/ui_scoreboard.h ${cmake_ninja_workdir}app_autogen/include/ui_mainwindow.h ${cmake_ninja_workdir}app_autogen/include/ui_matchui.h: phony app_autogen/timestamp || app_autogen_timestamp_deps + +# ============================================================================= +# Target aliases. + +build app: phony app.exe + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug + +build all: phony app.exe + +# ============================================================================= +# Built-in targets + + +############################################# +# Phony target to force glob verification run. + +build A$:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/VerifyGlobs.cmake_force: phony + + +############################################# +# Re-run CMake to check if globbed directories changed. + +build A$:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | A$:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/VerifyGlobs.cmake_force + pool = console + restat = 1 + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE A$:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/cmake.verify_globs | .qtc/package-manager/auto-setup.cmake A$:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/VerifyGlobs.cmake A$:/workspace/special-broccoli/app/CMakeLists.txt C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/QtInstallPaths.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeParseArguments.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeRCInformation.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckIncludeFileCXX.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckLibraryExists.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindThreads.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindVulkan.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/GNUInstallDirs.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-windres.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake CMakeCache.txt CMakeFiles/3.27.7/CMakeCXXCompiler.cmake CMakeFiles/3.27.7/CMakeRCCompiler.cmake CMakeFiles/3.27.7/CMakeSystem.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build .qtc/package-manager/auto-setup.cmake A$:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/CMakeFiles/VerifyGlobs.cmake A$:/workspace/special-broccoli/app/CMakeLists.txt C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Core/QtInstallPaths.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessTargets.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake C$:/Qt/6.7.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeFindDependencyMacro.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeParseArguments.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeRCInformation.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckIncludeFileCXX.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/CheckLibraryExists.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Compiler/GNU.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindPackageMessage.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindThreads.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/FindVulkan.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/GNUInstallDirs.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-GNU.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows-windres.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/Windows.cmake C$:/Qt/Tools/CMake_64/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake CMakeCache.txt CMakeFiles/3.27.7/CMakeCXXCompiler.cmake CMakeFiles/3.27.7/CMakeRCCompiler.cmake CMakeFiles/3.27.7/CMakeSystem.cmake: phony + + +############################################# +# Clean additional files. + +build CMakeFiles/clean.additional: CLEAN_ADDITIONAL + CONFIG = Debug + + +############################################# +# Clean all the built files. + +build clean: CLEAN CMakeFiles/clean.additional + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/cmake_install.cmake b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/cmake_install.cmake new file mode 100644 index 0000000..66ca9fd --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/cmake_install.cmake @@ -0,0 +1,59 @@ +# Install script for directory: A:/workspace/special-broccoli/app + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/app") +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 "C:/Qt/Tools/mingw1120_64/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/app.exe") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/app.exe" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/app.exe") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "C:/Qt/Tools/mingw1120_64/bin/strip.exe" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/app.exe") + 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 "A:/workspace/special-broccoli/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/qtcsettings.cmake b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/qtcsettings.cmake new file mode 100644 index 0000000..1649748 --- /dev/null +++ b/app/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/qtcsettings.cmake @@ -0,0 +1,2 @@ +# This file is managed by Qt Creator, do not edit! + diff --git a/app/main.cpp b/app/main.cpp new file mode 100644 index 0000000..a832e23 --- /dev/null +++ b/app/main.cpp @@ -0,0 +1,69 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "playerbox.h" + +int main(int argc, char *argv[]) +{ + QApplication app(argc, argv); + + QMainWindow mainWindow; + mainWindow.setWindowIcon(QIcon("ball.svg")); // Set your app's logo + mainWindow.resize(720, 720); // Widen the overall interface + + // Menu Bar + QMenuBar *menuBar = mainWindow.menuBar(); + QMenu *fileMenu = menuBar->addMenu("File"); + fileMenu->addAction("New Tournament"); + fileMenu->addAction("Save"); + fileMenu->addAction("Load"); + fileMenu->addAction("Export Data"); + fileMenu->addAction("Import Data"); + menuBar->addMenu("Edit"); + menuBar->addMenu("View"); + menuBar->addMenu("Settings"); + menuBar->addMenu("Help"); + + // Toolbar + QToolBar *toolbar = mainWindow.addToolBar("Toolbar"); + toolbar->addAction(QIcon("path_to_new_player_icon.png"), "New Player"); + toolbar->addAction(QIcon("path_to_new_match_icon.png"), "New Match"); + toolbar->addAction(QIcon("path_to_statistics_icon.png"), "Statistics"); + + // Search Bar + QLineEdit *searchBar = new QLineEdit(&mainWindow); + toolbar->addWidget(searchBar); + + // Main Display Area + QTabWidget *tabWidget = new QTabWidget(&mainWindow); + + // Create PlayerBox instance and add it to the "Players" tab + PlayerBox *playerBox = new PlayerBox(&mainWindow); + QWidget *playersTab = new QWidget(); // Create a widget for the "Players" tab + QVBoxLayout *playersLayout = new QVBoxLayout(playersTab); // Layout for the "Players" tab + playersLayout->addWidget(playerBox); // Add playerBox to the layout + tabWidget->addTab(playersTab, "Players"); + + tabWidget->addTab(new QWidget(), "Matches"); + tabWidget->addTab(new QWidget(), "Standings"); + tabWidget->addTab(new QWidget(), "Player Profile"); + tabWidget->addTab(new QWidget(), "Match Details"); + + // Set tabWidget as the central widget + mainWindow.setCentralWidget(tabWidget); + + // Status Bar + mainWindow.statusBar()->showMessage("Ready"); + + mainWindow.show(); + + return app.exec(); +} diff --git a/app/mainwindow.cpp b/app/mainwindow.cpp new file mode 100644 index 0000000..6f35f35 --- /dev/null +++ b/app/mainwindow.cpp @@ -0,0 +1,34 @@ +#include "MainWindow.h" +#include "ui_MainWindow.h" + +MainWindow::MainWindow(QWidget *parent) + : QMainWindow(parent), ui(new Ui::MainWindow), scoreboard(new Scoreboard(this)) { + ui->setupUi(this); + + playerBox = new PlayerBox(this); + ui->centralWidget->layout()->addWidget(playerBox); + + connect(scoreboard, &Scoreboard::resultsChanged, this, &MainWindow::updateResultsView); + + // Initialize other UI components, menus, etc. +} + +MainWindow::~MainWindow() { + delete ui; +} + +connect(scoreboard, &Scoreboard::resultsChanged, this, &MainWindow::updateResultsView); + +void MainWindow::updateResultsView() { + QList results = scoreboard->getAllResults(); + QStringList resultList; + for (const auto &result : results) { + resultList << QString("%1 vs %2: %3") + .arg(result->getPlayer1()->getName()) + .arg(result->getPlayer2()->getName()) + .arg(result->getScore()); + } + ui->resultsListView->clear(); + ui->resultsListView->addItems(resultList); +} + diff --git a/app/mainwindow.h b/app/mainwindow.h new file mode 100644 index 0000000..05a5a07 --- /dev/null +++ b/app/mainwindow.h @@ -0,0 +1,23 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include +#include "PlayerBox.h" +#include "Scoreboard.h" + +class MainWindow : public QMainWindow { + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = nullptr); + ~MainWindow(); + +private: + PlayerBox *playerBox; + Scoreboard *scoreboard; + +private slots: + void updateResultsView(); +}; + +#endif // MAINWINDOW_H diff --git a/app/mainwindow.ui b/app/mainwindow.ui new file mode 100644 index 0000000..4dae1f2 --- /dev/null +++ b/app/mainwindow.ui @@ -0,0 +1,31 @@ + + + MainWindow + + + + 0 + 0 + 800 + 600 + + + + MainWindow + + + + + + + + + + + + + + + + + diff --git a/app/matchui.cpp b/app/matchui.cpp new file mode 100644 index 0000000..161cac4 --- /dev/null +++ b/app/matchui.cpp @@ -0,0 +1,14 @@ +#include "matchui.h" +#include "ui_matchui.h" + +MatchUI::MatchUI(QWidget *parent) + : QWidget(parent) + , ui(new Ui::MatchUI) +{ + ui->setupUi(this); +} + +MatchUI::~MatchUI() +{ + delete ui; +} diff --git a/app/matchui.h b/app/matchui.h new file mode 100644 index 0000000..61e42dd --- /dev/null +++ b/app/matchui.h @@ -0,0 +1,22 @@ +#ifndef MATCHUI_H +#define MATCHUI_H + +#include + +namespace Ui { +class MatchUI; +} + +class MatchUI : public QWidget +{ + Q_OBJECT + +public: + explicit MatchUI(QWidget *parent = nullptr); + ~MatchUI(); + +private: + Ui::MatchUI *ui; +}; + +#endif // MATCHUI_H diff --git a/app/matchui.ui b/app/matchui.ui new file mode 100644 index 0000000..9cc4519 --- /dev/null +++ b/app/matchui.ui @@ -0,0 +1,35 @@ + + +
+ MATCHUI_H + MATCHUI_H +
+ + QWidget + QSqlDatabase + QStandardItemModel + GestionJoueurs.h + + Ui + + + matchCreated + + createMatch + updateMatchList + updatePlayerComboBoxes + updateMatchDetails + + + + explicit MatchUI(QWidget *parent, const QSqlDatabase &database, GestionJoueurs* gestionJoueurs) + ~MatchUI() + + + Ui::MatchUI *ui; + QSqlDatabase db; + QStandardItemModel *matchModel; + GestionJoueurs *gestionJoueurs; + + +
diff --git a/app/playerbox.cpp b/app/playerbox.cpp new file mode 100644 index 0000000..cfd67a3 --- /dev/null +++ b/app/playerbox.cpp @@ -0,0 +1,94 @@ +#include "playerbox.h" +#include "ui_playerbox.h" + +PlayerBox::PlayerBox(QWidget *parent) + : QWidget(parent), + ui(new Ui::PlayerBox) +{ + ui->setupUi(this); + + // Connect signals and slots + connect(ui->addPlayerButton, &QPushButton::clicked, this, &PlayerBox::addPlayer); + connect(ui->removePlayerButton, &QPushButton::clicked, this, &PlayerBox::removePlayer); + connect(ui->updatePlayerButton, &QPushButton::clicked, this, &PlayerBox::updatePlayer); + connect(ui->searchPlayerLineEdit, &QLineEdit::textChanged, this, &PlayerBox::searchPlayer); + + // Connect the list widget's item selection signal + connect(ui->playerListWidget, &QListWidget::itemSelectionChanged, this, &PlayerBox::playerSelectionChanged); +} + +PlayerBox::~PlayerBox() +{ + delete ui; +} + +void PlayerBox::addPlayer() { + QString name = ui->playerNameLineEdit->text(); + int ranking = ui->playerRankingSpinBox->value(); + + // Emit signal to notify the main application + emit playerAdded(name, ranking); + + // Clear input fields + ui->playerNameLineEdit->clear(); + ui->playerRankingSpinBox->setValue(0); +} + +void PlayerBox::removePlayer() { + // Get the currently selected item + QListWidgetItem* selectedItem = ui->playerListWidget->currentItem(); + + if (selectedItem) { + QString name = selectedItem->text().split(" ").last(); + + // Emit signal to notify the main application + emit playerRemoved(name); + + // Remove from internal list and the list widget + delete selectedItem; + players.removeOne(selectedItem->text()); + } +} + +void PlayerBox::updatePlayer() { + // Get the currently selected item + QListWidgetItem* selectedItem = ui->playerListWidget->currentItem(); + + if (selectedItem) { + QString name = selectedItem->text().split(" ").last(); + int newRanking = ui->playerRankingSpinBox->value(); + + // Emit signal to notify the main application + emit playerUpdated(name, newRanking); + + // Update the internal list and the list widget + int index = ui->playerListWidget->row(selectedItem); + players[index] = QString::number(newRanking) + " " + name; + selectedItem->setText(players[index]); + + // Clear input fields + ui->updatePlayerLineEdit->clear(); + ui->playerRankingSpinBox->setValue(0); + } +} + +void PlayerBox::searchPlayer(const QString& text) { + QString searchTerm = text; + + // Emit signal to notify the main application + emit playerSearched(searchTerm); + + // (Optional) You could display search results directly in the PlayerBox + // if you want to make it a self-contained widget. +} + +// New slot for handling list item selection +void PlayerBox::playerSelectionChanged() { + QListWidgetItem* selectedItem = ui->playerListWidget->currentItem(); + if (selectedItem) { + QString name = selectedItem->text().split(" ").last(); + + // Update the "Update Player" section + ui->updatePlayerLineEdit->setText(name); + } +} diff --git a/app/playerbox.h b/app/playerbox.h new file mode 100644 index 0000000..a12605a --- /dev/null +++ b/app/playerbox.h @@ -0,0 +1,43 @@ +#ifndef PLAYERBOX_H +#define PLAYERBOX_H + +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE +namespace Ui { class PlayerBox; } +QT_END_NAMESPACE + +class PlayerBox : public QWidget +{ + Q_OBJECT + +public: + explicit PlayerBox(QWidget *parent = nullptr); + ~PlayerBox(); + +signals: + void playerAdded(const QString& name, int ranking); + void playerRemoved(const QString& name); + void playerUpdated(const QString& name, int newRanking); + void playerSearched(const QString& searchTerm); + +private slots: + void addPlayer(); + void removePlayer(); + void updatePlayer(); + void searchPlayer(const QString& text); + void playerSelectionChanged(); + + +private: + Ui::PlayerBox *ui; + QList players; +}; + +#endif // PLAYERBOX_H diff --git a/app/playerbox.ui b/app/playerbox.ui new file mode 100644 index 0000000..a242e5f --- /dev/null +++ b/app/playerbox.ui @@ -0,0 +1,242 @@ + + + PlayerBox + + + + 0 + 0 + 500 + 650 + + + + true + + + Player Management + + + + + + + 20 + 30 + 150 + 25 + + + + Enter Player's Name: + + + + + + + + 200 + 30 + 250 + 25 + + + + + + + + + 20 + 80 + 150 + 25 + + + + Enter Player's Rank: + + + + + + + + 200 + 80 + 100 + 25 + + + + 1 + + + 1000 + + + + + + + + 350 + 130 + 100 + 30 + + + + Add Player + + + + + + + + 350 + 180 + 100 + 30 + + + + Update Player + + + + + + + + 350 + 230 + 100 + 30 + + + + Remove Player + + + + + + + + 20 + 280 + 150 + 25 + + + + Player List: + + + + + + + + 20 + 310 + 300 + 250 + + + + + + + + + 20 + 580 + 150 + 25 + + + + Search Player: + + + + + + + + 200 + 580 + 250 + 25 + + + + + + + + + 350 + 280 + 150 + 25 + + + + Update Player Name: + + + + + + + + 350 + 310 + 150 + 25 + + + + + + + + + 350 + 350 + 150 + 25 + + + + Update Player Rank: + + + + + + + + 350 + 380 + 100 + 25 + + + + 1 + + + 1000 + + + + + + + diff --git a/app/scoreboard.cpp b/app/scoreboard.cpp new file mode 100644 index 0000000..e7c1001 --- /dev/null +++ b/app/scoreboard.cpp @@ -0,0 +1,32 @@ +#include "Scoreboard.h" + +Scoreboard::Scoreboard(QObject *parent) + : QObject(parent) {} + +QVector Scoreboard::getAllResults() const { + return m_results; +} + +void Scoreboard::addResult(MatchResult *result) { + m_results.append(result); + emit resultsChanged(); +} + +void Scoreboard::removeResult(int matchId) { + for (int i = 0; i < m_results.size(); ++i) { + if (m_results[i]->getMatchId() == matchId) { + m_results.remove(i); + emit resultsChanged(); + return; + } + } +} + +MatchResult* Scoreboard::getResult(int matchId) const { + for (const auto &result : m_results) { + if (result->getMatchId() == matchId) { + return result; + } + } + return nullptr; +} diff --git a/app/scoreboard.h b/app/scoreboard.h new file mode 100644 index 0000000..f86970d --- /dev/null +++ b/app/scoreboard.h @@ -0,0 +1,29 @@ +#ifndef SCOREBOARD_H +#define SCOREBOARD_H + +#include +#include +#include "MatchResult.h" + +class Scoreboard : public QObject { + Q_OBJECT + Q_PROPERTY(QVector results READ getAllResults NOTIFY resultsChanged) + +public: + explicit Scoreboard(QObject *parent = nullptr); + + QVector getAllResults() const; + +public slots: + void addResult(MatchResult *result); + void removeResult(int matchId); + MatchResult* getResult(int matchId) const; + +signals: + void resultsChanged(); + +private: + QVector m_results; +}; + +#endif // SCOREBOARD_H diff --git a/app/scoreboard.ui b/app/scoreboard.ui new file mode 100644 index 0000000..9159483 --- /dev/null +++ b/app/scoreboard.ui @@ -0,0 +1,19 @@ + + + Scoreboard + + + + 0 + 0 + 400 + 300 + + + + Form + + + + + 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-083676cbc1afd5345f28.json b/build/.cmake/api/v1/reply/cache-v2-083676cbc1afd5345f28.json new file mode 100644 index 0000000..c4205fe --- /dev/null +++ b/build/.cmake/api/v1/reply/cache-v2-083676cbc1afd5345f28.json @@ -0,0 +1,1367 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.39.33519/bin/Hostx64/arm64/lib.exe" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "a:/workspace/special-broccoli/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" : "4" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files/CMake/bin/cmake.exe" + }, + { + "name" : "CMAKE_CONFIGURATION_TYPES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Semicolon separated list of supported configuration types, only supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything else will be ignored." + } + ], + "type" : "STRING", + "value" : "Debug;Release;MinSizeRel;RelWithDebInfo" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files/CMake/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files/CMake/bin/ctest.exe" + }, + { + "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" : "/DWIN32 /D_WINDOWS /W3 /GR /EHsc" + }, + { + "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" : "/MDd /Zi /Ob0 /Od /RTC1" + }, + { + "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" : "/MD /O1 /Ob1 /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" : "/MD /O2 /Ob2 /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" : "/MD /Zi /O2 /Ob1 /DNDEBUG" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "Unknown" + }, + { + "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" : "/machine:ARM64" + }, + { + "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" : "/debug /INCREMENTAL" + }, + { + "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" : "/INCREMENTAL:NO" + }, + { + "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" : "/INCREMENTAL:NO" + }, + { + "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" : "/debug /INCREMENTAL" + }, + { + "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" : "A:/workspace/special-broccoli/build/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "Visual Studio 17 2022" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files/Microsoft Visual Studio/2022/Community" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "arm64" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "host=x64" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "A:/workspace/special-broccoli/app" + }, + { + "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_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" : "C:/Program Files (x86)/app" + }, + { + "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" : "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.39.33519/bin/Hostx64/arm64/link.exe" + }, + { + "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" : "/machine:ARM64" + }, + { + "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" : "/debug /INCREMENTAL" + }, + { + "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" : "/INCREMENTAL:NO" + }, + { + "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" : "/INCREMENTAL:NO" + }, + { + "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" : "/debug /INCREMENTAL" + }, + { + "name" : "CMAKE_MT", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/mt.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "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" : "app" + }, + { + "name" : "CMAKE_PROJECT_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0.1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MAJOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MINOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_PATCH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_VERSION_TWEAK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "noop for ranlib" + } + ], + "type" : "INTERNAL", + "value" : ":" + }, + { + "name" : "CMAKE_RC_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "RC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/rc.exe" + }, + { + "name" : "CMAKE_RC_COMPILER_WORKS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_RC_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during all build types." + } + ], + "type" : "STRING", + "value" : "-DWIN32" + }, + { + "name" : "CMAKE_RC_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-D_DEBUG" + }, + { + "name" : "CMAKE_RC_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files/CMake/share/cmake-3.27" + }, + { + "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" : "/machine:ARM64" + }, + { + "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" : "/debug /INCREMENTAL" + }, + { + "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" : "/INCREMENTAL:NO" + }, + { + "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" : "/INCREMENTAL:NO" + }, + { + "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" : "/debug /INCREMENTAL" + }, + { + "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" : "/machine:ARM64" + }, + { + "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_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" : "QT_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for QT." + } + ], + "type" : "PATH", + "value" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5" + }, + { + "name" : "Qt5Core_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5Core." + } + ], + "type" : "PATH", + "value" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core" + }, + { + "name" : "Qt5Gui_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5Gui." + } + ], + "type" : "PATH", + "value" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui" + }, + { + "name" : "Qt5LinguistTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5LinguistTools." + } + ], + "type" : "PATH", + "value" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5LinguistTools" + }, + { + "name" : "Qt5Widgets_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5Widgets." + } + ], + "type" : "PATH", + "value" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets" + }, + { + "name" : "Qt5_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5." + } + ], + "type" : "PATH", + "value" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files (x86)/app" + }, + { + "name" : "app_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "A:/workspace/special-broccoli/build" + }, + { + "name" : "app_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "app_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "A:/workspace/special-broccoli/app" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/build/.cmake/api/v1/reply/cmakeFiles-v1-be3df846f5638a786bd3.json b/build/.cmake/api/v1/reply/cmakeFiles-v1-be3df846f5638a786bd3.json new file mode 100644 index 0000000..f4d34a0 --- /dev/null +++ b/build/.cmake/api/v1/reply/cmakeFiles-v1-be3df846f5638a786bd3.json @@ -0,0 +1,291 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/CMakeFiles/3.27.4/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake" + }, + { + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/CMakeFiles/3.27.4/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/Windows.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/Compiler/MSVC-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/Compiler/MSVC.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/Windows-MSVC-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/Windows-MSVC.cmake" + }, + { + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/CMakeFiles/3.27.4/CMakeRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeRCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5ModuleLocation.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeParseArguments.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QPdfPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeParseArguments.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeParseArguments.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/CMake/share/cmake-3.27/Modules/GNUInstallDirs.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "A:/workspace/special-broccoli/build", + "source" : "A:/workspace/special-broccoli/app" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/build/.cmake/api/v1/reply/codemodel-v2-e0c884ffad59c3ff5ce2.json b/build/.cmake/api/v1/reply/codemodel-v2-e0c884ffad59c3ff5ce2.json new file mode 100644 index 0000000..7681e6a --- /dev/null +++ b/build/.cmake/api/v1/reply/codemodel-v2-e0c884ffad59c3ff5ce2.json @@ -0,0 +1,268 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "hasInstallRule" : true, + "jsonFile" : "directory-.-Debug-762dfccda01ab20d8daa.json", + "minimumCMakeVersion" : + { + "string" : "3.5" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "app", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 0, + "id" : "ALL_BUILD::@6890427a1f51a3e7e1df", + "jsonFile" : "target-ALL_BUILD-Debug-5b8033345ba9016d7be8.json", + "name" : "ALL_BUILD", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df", + "jsonFile" : "target-ZERO_CHECK-Debug-e5978618db5e51596329.json", + "name" : "ZERO_CHECK", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "app::@6890427a1f51a3e7e1df", + "jsonFile" : "target-app-Debug-0bdbb12e5b1c9cef3dba.json", + "name" : "app", + "projectIndex" : 0 + } + ] + }, + { + "directories" : + [ + { + "build" : ".", + "hasInstallRule" : true, + "jsonFile" : "directory-.-Release-2ece7b7bd8f6e7e26aa3.json", + "minimumCMakeVersion" : + { + "string" : "3.5" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "name" : "Release", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "app", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 0, + "id" : "ALL_BUILD::@6890427a1f51a3e7e1df", + "jsonFile" : "target-ALL_BUILD-Release-5b8033345ba9016d7be8.json", + "name" : "ALL_BUILD", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df", + "jsonFile" : "target-ZERO_CHECK-Release-e5978618db5e51596329.json", + "name" : "ZERO_CHECK", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "app::@6890427a1f51a3e7e1df", + "jsonFile" : "target-app-Release-67faa6060691b360a733.json", + "name" : "app", + "projectIndex" : 0 + } + ] + }, + { + "directories" : + [ + { + "build" : ".", + "hasInstallRule" : true, + "jsonFile" : "directory-.-MinSizeRel-e386e706bb90060d5130.json", + "minimumCMakeVersion" : + { + "string" : "3.5" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "name" : "MinSizeRel", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "app", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 0, + "id" : "ALL_BUILD::@6890427a1f51a3e7e1df", + "jsonFile" : "target-ALL_BUILD-MinSizeRel-5b8033345ba9016d7be8.json", + "name" : "ALL_BUILD", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df", + "jsonFile" : "target-ZERO_CHECK-MinSizeRel-e5978618db5e51596329.json", + "name" : "ZERO_CHECK", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "app::@6890427a1f51a3e7e1df", + "jsonFile" : "target-app-MinSizeRel-a3c422d34458344a3240.json", + "name" : "app", + "projectIndex" : 0 + } + ] + }, + { + "directories" : + [ + { + "build" : ".", + "hasInstallRule" : true, + "jsonFile" : "directory-.-RelWithDebInfo-9b9b0a2f4dd92d314bfd.json", + "minimumCMakeVersion" : + { + "string" : "3.5" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "name" : "RelWithDebInfo", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "app", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 0, + "id" : "ALL_BUILD::@6890427a1f51a3e7e1df", + "jsonFile" : "target-ALL_BUILD-RelWithDebInfo-5b8033345ba9016d7be8.json", + "name" : "ALL_BUILD", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df", + "jsonFile" : "target-ZERO_CHECK-RelWithDebInfo-e5978618db5e51596329.json", + "name" : "ZERO_CHECK", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "app::@6890427a1f51a3e7e1df", + "jsonFile" : "target-app-RelWithDebInfo-5c80f0cf432921f6f41b.json", + "name" : "app", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "A:/workspace/special-broccoli/build", + "source" : "A:/workspace/special-broccoli/app" + }, + "version" : + { + "major" : 2, + "minor" : 6 + } +} diff --git a/build/.cmake/api/v1/reply/directory-.-Debug-762dfccda01ab20d8daa.json b/build/.cmake/api/v1/reply/directory-.-Debug-762dfccda01ab20d8daa.json new file mode 100644 index 0000000..585ab85 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-.-Debug-762dfccda01ab20d8daa.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 80, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "Debug/app.exe" + ], + "targetId" : "app::@6890427a1f51a3e7e1df", + "targetIndex" : 2, + "type" : "target" + } + ], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/build/.cmake/api/v1/reply/directory-.-MinSizeRel-e386e706bb90060d5130.json b/build/.cmake/api/v1/reply/directory-.-MinSizeRel-e386e706bb90060d5130.json new file mode 100644 index 0000000..5e274c6 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-.-MinSizeRel-e386e706bb90060d5130.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 80, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "MinSizeRel/app.exe" + ], + "targetId" : "app::@6890427a1f51a3e7e1df", + "targetIndex" : 2, + "type" : "target" + } + ], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/build/.cmake/api/v1/reply/directory-.-RelWithDebInfo-9b9b0a2f4dd92d314bfd.json b/build/.cmake/api/v1/reply/directory-.-RelWithDebInfo-9b9b0a2f4dd92d314bfd.json new file mode 100644 index 0000000..823e1e1 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-.-RelWithDebInfo-9b9b0a2f4dd92d314bfd.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 80, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "RelWithDebInfo/app.exe" + ], + "targetId" : "app::@6890427a1f51a3e7e1df", + "targetIndex" : 2, + "type" : "target" + } + ], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/build/.cmake/api/v1/reply/directory-.-Release-2ece7b7bd8f6e7e26aa3.json b/build/.cmake/api/v1/reply/directory-.-Release-2ece7b7bd8f6e7e26aa3.json new file mode 100644 index 0000000..245951d --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-.-Release-2ece7b7bd8f6e7e26aa3.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 80, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "Release/app.exe" + ], + "targetId" : "app::@6890427a1f51a3e7e1df", + "targetIndex" : 2, + "type" : "target" + } + ], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/build/.cmake/api/v1/reply/index-2024-05-23T05-54-59-0331.json b/build/.cmake/api/v1/reply/index-2024-05-23T05-54-59-0331.json new file mode 100644 index 0000000..958de43 --- /dev/null +++ b/build/.cmake/api/v1/reply/index-2024-05-23T05-54-59-0331.json @@ -0,0 +1,133 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : true, + "name" : "Visual Studio 17 2022", + "platform" : "arm64" + }, + "paths" : + { + "cmake" : "C:/Program Files/CMake/bin/cmake.exe", + "cpack" : "C:/Program Files/CMake/bin/cpack.exe", + "ctest" : "C:/Program Files/CMake/bin/ctest.exe", + "root" : "C:/Program Files/CMake/share/cmake-3.27" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 27, + "patch" : 4, + "string" : "3.27.4", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-e0c884ffad59c3ff5ce2.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 6 + } + }, + { + "jsonFile" : "cache-v2-083676cbc1afd5345f28.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-be3df846f5638a786bd3.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + { + "jsonFile" : "toolchains-v1-e68092fc723e5132c473.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-083676cbc1afd5345f28.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "codemodel-v2-e0c884ffad59c3ff5ce2.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 6 + } + }, + { + "jsonFile" : "toolchains-v1-e68092fc723e5132c473.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-be3df846f5638a786bd3.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ] + } + } + } +} diff --git a/build/.cmake/api/v1/reply/target-ALL_BUILD-Debug-5b8033345ba9016d7be8.json b/build/.cmake/api/v1/reply/target-ALL_BUILD-Debug-5b8033345ba9016d7be8.json new file mode 100644 index 0000000..8640c54 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-ALL_BUILD-Debug-5b8033345ba9016d7be8.json @@ -0,0 +1,36 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "app::@6890427a1f51a3e7e1df" + }, + { + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df" + } + ], + "id" : "ALL_BUILD::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "ALL_BUILD", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-ALL_BUILD-MinSizeRel-5b8033345ba9016d7be8.json b/build/.cmake/api/v1/reply/target-ALL_BUILD-MinSizeRel-5b8033345ba9016d7be8.json new file mode 100644 index 0000000..8640c54 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-ALL_BUILD-MinSizeRel-5b8033345ba9016d7be8.json @@ -0,0 +1,36 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "app::@6890427a1f51a3e7e1df" + }, + { + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df" + } + ], + "id" : "ALL_BUILD::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "ALL_BUILD", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-ALL_BUILD-RelWithDebInfo-5b8033345ba9016d7be8.json b/build/.cmake/api/v1/reply/target-ALL_BUILD-RelWithDebInfo-5b8033345ba9016d7be8.json new file mode 100644 index 0000000..8640c54 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-ALL_BUILD-RelWithDebInfo-5b8033345ba9016d7be8.json @@ -0,0 +1,36 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "app::@6890427a1f51a3e7e1df" + }, + { + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df" + } + ], + "id" : "ALL_BUILD::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "ALL_BUILD", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-ALL_BUILD-Release-5b8033345ba9016d7be8.json b/build/.cmake/api/v1/reply/target-ALL_BUILD-Release-5b8033345ba9016d7be8.json new file mode 100644 index 0000000..8640c54 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-ALL_BUILD-Release-5b8033345ba9016d7be8.json @@ -0,0 +1,36 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "app::@6890427a1f51a3e7e1df" + }, + { + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df" + } + ], + "id" : "ALL_BUILD::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "ALL_BUILD", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-ZERO_CHECK-Debug-e5978618db5e51596329.json b/build/.cmake/api/v1/reply/target-ZERO_CHECK-Debug-e5978618db5e51596329.json new file mode 100644 index 0000000..22cde11 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-ZERO_CHECK-Debug-e5978618db5e51596329.json @@ -0,0 +1,45 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "ZERO_CHECK", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/CMakeFiles/1638fdeb38083ae3f62b630791cfbf64/generate.stamp.rule", + "sourceGroupIndex" : 0 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-ZERO_CHECK-MinSizeRel-e5978618db5e51596329.json b/build/.cmake/api/v1/reply/target-ZERO_CHECK-MinSizeRel-e5978618db5e51596329.json new file mode 100644 index 0000000..22cde11 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-ZERO_CHECK-MinSizeRel-e5978618db5e51596329.json @@ -0,0 +1,45 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "ZERO_CHECK", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/CMakeFiles/1638fdeb38083ae3f62b630791cfbf64/generate.stamp.rule", + "sourceGroupIndex" : 0 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-ZERO_CHECK-RelWithDebInfo-e5978618db5e51596329.json b/build/.cmake/api/v1/reply/target-ZERO_CHECK-RelWithDebInfo-e5978618db5e51596329.json new file mode 100644 index 0000000..22cde11 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-ZERO_CHECK-RelWithDebInfo-e5978618db5e51596329.json @@ -0,0 +1,45 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "ZERO_CHECK", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/CMakeFiles/1638fdeb38083ae3f62b630791cfbf64/generate.stamp.rule", + "sourceGroupIndex" : 0 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-ZERO_CHECK-Release-e5978618db5e51596329.json b/build/.cmake/api/v1/reply/target-ZERO_CHECK-Release-e5978618db5e51596329.json new file mode 100644 index 0000000..22cde11 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-ZERO_CHECK-Release-e5978618db5e51596329.json @@ -0,0 +1,45 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "ZERO_CHECK", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/CMakeFiles/1638fdeb38083ae3f62b630791cfbf64/generate.stamp.rule", + "sourceGroupIndex" : 0 + } + ], + "type" : "UTILITY" +} diff --git a/build/.cmake/api/v1/reply/target-app-Debug-0bdbb12e5b1c9cef3dba.json b/build/.cmake/api/v1/reply/target-app-Debug-0bdbb12e5b1c9cef3dba.json new file mode 100644 index 0000000..12af341 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-app-Debug-0bdbb12e5b1c9cef3dba.json @@ -0,0 +1,344 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/app.exe" + }, + { + "path" : "Debug/app.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "include" + ], + "files" : + [ + "CMakeLists.txt", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5Config.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfig.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 55, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 80, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 63, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 13, + "parent" : 0 + }, + { + "file" : 2, + "parent" : 4 + }, + { + "command" : 5, + "file" : 2, + "line" : 28, + "parent" : 5 + }, + { + "file" : 1, + "parent" : 6 + }, + { + "command" : 4, + "file" : 1, + "line" : 208, + "parent" : 7 + }, + { + "command" : 3, + "file" : 1, + "line" : 44, + "parent" : 8 + }, + { + "command" : 5, + "file" : 1, + "line" : 106, + "parent" : 7 + }, + { + "file" : 5, + "parent" : 10 + }, + { + "command" : 5, + "file" : 5, + "line" : 106, + "parent" : 11 + }, + { + "file" : 4, + "parent" : 12 + }, + { + "command" : 6, + "file" : 4, + "line" : 245, + "parent" : 13 + }, + { + "file" : 3, + "parent" : 14 + }, + { + "command" : 3, + "file" : 3, + "line" : 107, + "parent" : 15 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "/DWIN32 /D_WINDOWS /W3 /GR /EHsc /MDd /Zi /Ob0 /Od /RTC1 -std:c++17" + } + ], + "defines" : + [ + { + "backtrace" : 3, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 3, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 3, + "define" : "QT_WIDGETS_LIB" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "A:/workspace/special-broccoli/build/app_autogen/include_Debug" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtWidgets" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtGui" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtANGLE" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtCore" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/./mkspecs/win32-msvc" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 3 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "dependencies" : + [ + { + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df" + } + ], + "id" : "app::@6890427a1f51a3e7e1df", + "install" : + { + "destinations" : + [ + { + "backtrace" : 2, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/app" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/DWIN32 /D_WINDOWS /W3 /GR /EHsc /MDd /Zi /Ob0 /Od /RTC1", + "role" : "flags" + }, + { + "fragment" : "/machine:ARM64 /debug /INCREMENTAL /subsystem:windows", + "role" : "flags" + }, + { + "backtrace" : 3, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\Qt5Widgets_conda.lib", + "role" : "libraries" + }, + { + "backtrace" : 9, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\Qt5Gui_conda.lib", + "role" : "libraries" + }, + { + "backtrace" : 9, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\Qt5Core_conda.lib", + "role" : "libraries" + }, + { + "backtrace" : 16, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\qtmain_conda.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "app", + "nameOnDisk" : "app.exe", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 4 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 5 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/app_autogen/mocs_compilation_Debug.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "main.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "mainwindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "mainwindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "app_fr_FR.ts", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/CMakeFiles/e793a0cccb0a34010bc1d6447297cbc6/app_fr_FR.ts.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "EXECUTABLE" +} diff --git a/build/.cmake/api/v1/reply/target-app-MinSizeRel-a3c422d34458344a3240.json b/build/.cmake/api/v1/reply/target-app-MinSizeRel-a3c422d34458344a3240.json new file mode 100644 index 0000000..6b9724b --- /dev/null +++ b/build/.cmake/api/v1/reply/target-app-MinSizeRel-a3c422d34458344a3240.json @@ -0,0 +1,348 @@ +{ + "artifacts" : + [ + { + "path" : "MinSizeRel/app.exe" + }, + { + "path" : "MinSizeRel/app.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "include" + ], + "files" : + [ + "CMakeLists.txt", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5Config.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfig.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 55, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 80, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 63, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 13, + "parent" : 0 + }, + { + "file" : 2, + "parent" : 4 + }, + { + "command" : 5, + "file" : 2, + "line" : 28, + "parent" : 5 + }, + { + "file" : 1, + "parent" : 6 + }, + { + "command" : 4, + "file" : 1, + "line" : 208, + "parent" : 7 + }, + { + "command" : 3, + "file" : 1, + "line" : 44, + "parent" : 8 + }, + { + "command" : 5, + "file" : 1, + "line" : 106, + "parent" : 7 + }, + { + "file" : 5, + "parent" : 10 + }, + { + "command" : 5, + "file" : 5, + "line" : 106, + "parent" : 11 + }, + { + "file" : 4, + "parent" : 12 + }, + { + "command" : 6, + "file" : 4, + "line" : 245, + "parent" : 13 + }, + { + "file" : 3, + "parent" : 14 + }, + { + "command" : 3, + "file" : 3, + "line" : 107, + "parent" : 15 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "/DWIN32 /D_WINDOWS /W3 /GR /EHsc /MD /O1 /Ob1 /DNDEBUG -std:c++17" + } + ], + "defines" : + [ + { + "backtrace" : 3, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 3, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 3, + "define" : "QT_NO_DEBUG" + }, + { + "backtrace" : 3, + "define" : "QT_WIDGETS_LIB" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "A:/workspace/special-broccoli/build/app_autogen/include_MinSizeRel" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtWidgets" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtGui" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtANGLE" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtCore" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/./mkspecs/win32-msvc" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 3 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "dependencies" : + [ + { + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df" + } + ], + "id" : "app::@6890427a1f51a3e7e1df", + "install" : + { + "destinations" : + [ + { + "backtrace" : 2, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/app" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/DWIN32 /D_WINDOWS /W3 /GR /EHsc /MD /O1 /Ob1 /DNDEBUG", + "role" : "flags" + }, + { + "fragment" : "/machine:ARM64 /INCREMENTAL:NO /subsystem:windows", + "role" : "flags" + }, + { + "backtrace" : 3, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\Qt5Widgets_conda.lib", + "role" : "libraries" + }, + { + "backtrace" : 9, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\Qt5Gui_conda.lib", + "role" : "libraries" + }, + { + "backtrace" : 9, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\Qt5Core_conda.lib", + "role" : "libraries" + }, + { + "backtrace" : 16, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\qtmain_conda.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "app", + "nameOnDisk" : "app.exe", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 4 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 5 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/app_autogen/mocs_compilation_MinSizeRel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "main.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "mainwindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "mainwindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "app_fr_FR.ts", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/CMakeFiles/e793a0cccb0a34010bc1d6447297cbc6/app_fr_FR.ts.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "EXECUTABLE" +} diff --git a/build/.cmake/api/v1/reply/target-app-RelWithDebInfo-5c80f0cf432921f6f41b.json b/build/.cmake/api/v1/reply/target-app-RelWithDebInfo-5c80f0cf432921f6f41b.json new file mode 100644 index 0000000..518312b --- /dev/null +++ b/build/.cmake/api/v1/reply/target-app-RelWithDebInfo-5c80f0cf432921f6f41b.json @@ -0,0 +1,348 @@ +{ + "artifacts" : + [ + { + "path" : "RelWithDebInfo/app.exe" + }, + { + "path" : "RelWithDebInfo/app.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "include" + ], + "files" : + [ + "CMakeLists.txt", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5Config.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfig.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 55, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 80, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 63, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 13, + "parent" : 0 + }, + { + "file" : 2, + "parent" : 4 + }, + { + "command" : 5, + "file" : 2, + "line" : 28, + "parent" : 5 + }, + { + "file" : 1, + "parent" : 6 + }, + { + "command" : 4, + "file" : 1, + "line" : 208, + "parent" : 7 + }, + { + "command" : 3, + "file" : 1, + "line" : 44, + "parent" : 8 + }, + { + "command" : 5, + "file" : 1, + "line" : 106, + "parent" : 7 + }, + { + "file" : 5, + "parent" : 10 + }, + { + "command" : 5, + "file" : 5, + "line" : 106, + "parent" : 11 + }, + { + "file" : 4, + "parent" : 12 + }, + { + "command" : 6, + "file" : 4, + "line" : 245, + "parent" : 13 + }, + { + "file" : 3, + "parent" : 14 + }, + { + "command" : 3, + "file" : 3, + "line" : 107, + "parent" : 15 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "/DWIN32 /D_WINDOWS /W3 /GR /EHsc /MD /Zi /O2 /Ob1 /DNDEBUG -std:c++17" + } + ], + "defines" : + [ + { + "backtrace" : 3, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 3, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 3, + "define" : "QT_NO_DEBUG" + }, + { + "backtrace" : 3, + "define" : "QT_WIDGETS_LIB" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "A:/workspace/special-broccoli/build/app_autogen/include_RelWithDebInfo" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtWidgets" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtGui" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtANGLE" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtCore" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/./mkspecs/win32-msvc" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 3 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "dependencies" : + [ + { + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df" + } + ], + "id" : "app::@6890427a1f51a3e7e1df", + "install" : + { + "destinations" : + [ + { + "backtrace" : 2, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/app" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/DWIN32 /D_WINDOWS /W3 /GR /EHsc /MD /Zi /O2 /Ob1 /DNDEBUG", + "role" : "flags" + }, + { + "fragment" : "/machine:ARM64 /debug /INCREMENTAL /subsystem:windows", + "role" : "flags" + }, + { + "backtrace" : 3, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\Qt5Widgets_conda.lib", + "role" : "libraries" + }, + { + "backtrace" : 9, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\Qt5Gui_conda.lib", + "role" : "libraries" + }, + { + "backtrace" : 9, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\Qt5Core_conda.lib", + "role" : "libraries" + }, + { + "backtrace" : 16, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\qtmain_conda.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "app", + "nameOnDisk" : "app.exe", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 4 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 5 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/app_autogen/mocs_compilation_RelWithDebInfo.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "main.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "mainwindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "mainwindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "app_fr_FR.ts", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/CMakeFiles/e793a0cccb0a34010bc1d6447297cbc6/app_fr_FR.ts.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "EXECUTABLE" +} diff --git a/build/.cmake/api/v1/reply/target-app-Release-67faa6060691b360a733.json b/build/.cmake/api/v1/reply/target-app-Release-67faa6060691b360a733.json new file mode 100644 index 0000000..8f44896 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-app-Release-67faa6060691b360a733.json @@ -0,0 +1,348 @@ +{ + "artifacts" : + [ + { + "path" : "Release/app.exe" + }, + { + "path" : "Release/app.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "include" + ], + "files" : + [ + "CMakeLists.txt", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5Config.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfig.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 55, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 80, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 63, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 13, + "parent" : 0 + }, + { + "file" : 2, + "parent" : 4 + }, + { + "command" : 5, + "file" : 2, + "line" : 28, + "parent" : 5 + }, + { + "file" : 1, + "parent" : 6 + }, + { + "command" : 4, + "file" : 1, + "line" : 208, + "parent" : 7 + }, + { + "command" : 3, + "file" : 1, + "line" : 44, + "parent" : 8 + }, + { + "command" : 5, + "file" : 1, + "line" : 106, + "parent" : 7 + }, + { + "file" : 5, + "parent" : 10 + }, + { + "command" : 5, + "file" : 5, + "line" : 106, + "parent" : 11 + }, + { + "file" : 4, + "parent" : 12 + }, + { + "command" : 6, + "file" : 4, + "line" : 245, + "parent" : 13 + }, + { + "file" : 3, + "parent" : 14 + }, + { + "command" : 3, + "file" : 3, + "line" : 107, + "parent" : 15 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "/DWIN32 /D_WINDOWS /W3 /GR /EHsc /MD /O2 /Ob2 /DNDEBUG -std:c++17" + } + ], + "defines" : + [ + { + "backtrace" : 3, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 3, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 3, + "define" : "QT_NO_DEBUG" + }, + { + "backtrace" : 3, + "define" : "QT_WIDGETS_LIB" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "A:/workspace/special-broccoli/build/app_autogen/include_Release" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtWidgets" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtGui" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtANGLE" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtCore" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/beo.MSI/anaconda3/Library/./mkspecs/win32-msvc" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 3 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "dependencies" : + [ + { + "id" : "ZERO_CHECK::@6890427a1f51a3e7e1df" + } + ], + "id" : "app::@6890427a1f51a3e7e1df", + "install" : + { + "destinations" : + [ + { + "backtrace" : 2, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/app" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/DWIN32 /D_WINDOWS /W3 /GR /EHsc /MD /O2 /Ob2 /DNDEBUG", + "role" : "flags" + }, + { + "fragment" : "/machine:ARM64 /INCREMENTAL:NO /subsystem:windows", + "role" : "flags" + }, + { + "backtrace" : 3, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\Qt5Widgets_conda.lib", + "role" : "libraries" + }, + { + "backtrace" : 9, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\Qt5Gui_conda.lib", + "role" : "libraries" + }, + { + "backtrace" : 9, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\Qt5Core_conda.lib", + "role" : "libraries" + }, + { + "backtrace" : 16, + "fragment" : "C:\\Users\\beo.MSI\\anaconda3\\Library\\lib\\qtmain_conda.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "app", + "nameOnDisk" : "app.exe", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 4 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 5 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/app_autogen/mocs_compilation_Release.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "main.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "mainwindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "mainwindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "app_fr_FR.ts", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "A:/workspace/special-broccoli/build/CMakeFiles/e793a0cccb0a34010bc1d6447297cbc6/app_fr_FR.ts.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "EXECUTABLE" +} diff --git a/build/.cmake/api/v1/reply/toolchains-v1-e68092fc723e5132c473.json b/build/.cmake/api/v1/reply/toolchains-v1-e68092fc723e5132c473.json new file mode 100644 index 0000000..df549f3 --- /dev/null +++ b/build/.cmake/api/v1/reply/toolchains-v1-e68092fc723e5132c473.json @@ -0,0 +1,58 @@ +{ + "kind" : "toolchains", + "toolchains" : + [ + { + "compiler" : + { + "id" : "MSVC", + "implicit" : + { + "includeDirectories" : [], + "linkDirectories" : [], + "linkFrameworkDirectories" : [], + "linkLibraries" : [] + }, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.39.33519/bin/Hostx64/arm64/cl.exe", + "version" : "19.39.33523.0" + }, + "language" : "CXX", + "sourceFileExtensions" : + [ + "C", + "M", + "c++", + "cc", + "cpp", + "cxx", + "m", + "mm", + "mpp", + "CPP", + "ixx", + "cppm", + "ccm", + "cxxm", + "c++m" + ] + }, + { + "compiler" : + { + "implicit" : {}, + "path" : "C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/rc.exe" + }, + "language" : "RC", + "sourceFileExtensions" : + [ + "rc", + "RC" + ] + } + ], + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/build/ALL_BUILD.vcxproj b/build/ALL_BUILD.vcxproj new file mode 100644 index 0000000..eb5ebb9 --- /dev/null +++ b/build/ALL_BUILD.vcxproj @@ -0,0 +1,184 @@ + + + + x64 + + + false + + + + Debug + arm64 + + + Release + arm64 + + + MinSizeRel + arm64 + + + RelWithDebInfo + arm64 + + + + {092A1526-6EA6-3C56-A529-C62A920F89A6} + Win32Proj + 10.0.22621.0 + arm64 + ALL_BUILD + NoUpgrade + + + + Utility + MultiByte + v143 + + + Utility + MultiByte + v143 + + + Utility + MultiByte + v143 + + + Utility + MultiByte + v143 + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + + + + %(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + %(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + %(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + %(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + Always + Building Custom Rule A:/workspace/special-broccoli/app/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -SA:/workspace/special-broccoli/app -BA:/workspace/special-broccoli/build --check-stamp-file A:/workspace/special-broccoli/build/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeCXXCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeRCCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-Initialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\WindowsPaths.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5Config.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ModuleLocation.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtrasMkspecDir.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QMinimalIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QOffscreenIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QPdfPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTuioTouchPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QVirtualKeyboardPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebGLIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QXdgDesktopPortalThemePlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin.cmake;%(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\generate.stamp + false + Building Custom Rule A:/workspace/special-broccoli/app/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -SA:/workspace/special-broccoli/app -BA:/workspace/special-broccoli/build --check-stamp-file A:/workspace/special-broccoli/build/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeCXXCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeRCCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-Initialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\WindowsPaths.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5Config.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ModuleLocation.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtrasMkspecDir.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QMinimalIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QOffscreenIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QPdfPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTuioTouchPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QVirtualKeyboardPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebGLIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QXdgDesktopPortalThemePlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin.cmake;%(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\generate.stamp + false + Building Custom Rule A:/workspace/special-broccoli/app/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -SA:/workspace/special-broccoli/app -BA:/workspace/special-broccoli/build --check-stamp-file A:/workspace/special-broccoli/build/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeCXXCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeRCCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-Initialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\WindowsPaths.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5Config.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ModuleLocation.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtrasMkspecDir.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QMinimalIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QOffscreenIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QPdfPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTuioTouchPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QVirtualKeyboardPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebGLIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QXdgDesktopPortalThemePlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin.cmake;%(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\generate.stamp + false + Building Custom Rule A:/workspace/special-broccoli/app/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -SA:/workspace/special-broccoli/app -BA:/workspace/special-broccoli/build --check-stamp-file A:/workspace/special-broccoli/build/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeCXXCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeRCCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-Initialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\WindowsPaths.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5Config.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ModuleLocation.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtrasMkspecDir.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QMinimalIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QOffscreenIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QPdfPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTuioTouchPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QVirtualKeyboardPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebGLIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QXdgDesktopPortalThemePlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin.cmake;%(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\generate.stamp + false + + + + + + + {9D9A0227-F5F0-3F8B-A236-3786B5465D74} + ZERO_CHECK + false + Never + + + {824BE532-C0AB-3236-AE3F-2D70ACA6F057} + app + + + + + + \ No newline at end of file diff --git a/build/ALL_BUILD.vcxproj.filters b/build/ALL_BUILD.vcxproj.filters new file mode 100644 index 0000000..ac98e52 --- /dev/null +++ b/build/ALL_BUILD.vcxproj.filters @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..1755162 --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,416 @@ +# This is the CMakeCache file. +# For build in directory: a:/workspace/special-broccoli/build +# It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.39.33519/bin/Hostx64/arm64/lib.exe + +//Semicolon separated list of supported configuration types, only +// supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything +// else will be ignored. +CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 /GR /EHsc + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1 + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING=/machine:ARM64 + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//No help, variable specified on the command line. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=A:/workspace/special-broccoli/build/CMakeFiles/pkgRedirects + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/app + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.39.33519/bin/Hostx64/arm64/link.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING=/machine:ARM64 + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//Path to a program. +CMAKE_MT:FILEPATH=C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/mt.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=app + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/rc.exe + +//Flags for Windows Resource Compiler during all build types. +CMAKE_RC_FLAGS:STRING=-DWIN32 + +//Flags for Windows Resource Compiler during DEBUG builds. +CMAKE_RC_FLAGS_DEBUG:STRING=-D_DEBUG + +//Flags for Windows Resource Compiler during MINSIZEREL builds. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during RELEASE builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during RELWITHDEBINFO builds. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING=/machine:ARM64 + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING=/machine:ARM64 + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//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. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//The directory containing a CMake configuration file for QT. +QT_DIR:PATH=C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5 + +//The directory containing a CMake configuration file for Qt5Core. +Qt5Core_DIR:PATH=C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core + +//The directory containing a CMake configuration file for Qt5Gui. +Qt5Gui_DIR:PATH=C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui + +//The directory containing a CMake configuration file for Qt5LinguistTools. +Qt5LinguistTools_DIR:PATH=C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5LinguistTools + +//The directory containing a CMake configuration file for Qt5Widgets. +Qt5Widgets_DIR:PATH=C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets + +//The directory containing a CMake configuration file for Qt5. +Qt5_DIR:PATH=C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5 + +//Value Computed by CMake +app_BINARY_DIR:STATIC=A:/workspace/special-broccoli/build + +//Value Computed by CMake +app_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +app_SOURCE_DIR:STATIC=A:/workspace/special-broccoli/app + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=a:/workspace/special-broccoli/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=27 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=4 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/CMake/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Visual Studio 17 2022 +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL=C:/Program Files/Microsoft Visual Studio/2022/Community +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL=arm64 +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL=host=x64 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=A:/workspace/special-broccoli/app +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MT +CMAKE_MT-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//noop for ranlib +CMAKE_RANLIB:INTERNAL=: +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Program Files/CMake/share/cmake-3.27 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/app + diff --git a/build/CMakeFiles/1638fdeb38083ae3f62b630791cfbf64/INSTALL_force.rule b/build/CMakeFiles/1638fdeb38083ae3f62b630791cfbf64/INSTALL_force.rule new file mode 100644 index 0000000..2d3998c --- /dev/null +++ b/build/CMakeFiles/1638fdeb38083ae3f62b630791cfbf64/INSTALL_force.rule @@ -0,0 +1 @@ +# generated from CMake diff --git a/build/CMakeFiles/1638fdeb38083ae3f62b630791cfbf64/generate.stamp.rule b/build/CMakeFiles/1638fdeb38083ae3f62b630791cfbf64/generate.stamp.rule new file mode 100644 index 0000000..2d3998c --- /dev/null +++ b/build/CMakeFiles/1638fdeb38083ae3f62b630791cfbf64/generate.stamp.rule @@ -0,0 +1 @@ +# generated from CMake diff --git a/build/CMakeFiles/3.27.4/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.27.4/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..46c98fb --- /dev/null +++ b/build/CMakeFiles/3.27.4/CMakeCXXCompiler.cmake @@ -0,0 +1,85 @@ +set(CMAKE_CXX_COMPILER "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.39.33519/bin/Hostx64/arm64/cl.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "MSVC") +set(CMAKE_CXX_COMPILER_VERSION "19.39.33523.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "OFF") +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 "Windows") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "MSVC") +set(CMAKE_CXX_SIMULATE_VERSION "") +set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID ARM64) + +set(MSVC_CXX_ARCHITECTURE_ID ARM64) + +set(CMAKE_AR "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.39.33519/bin/Hostx64/arm64/lib.exe") +set(CMAKE_CXX_COMPILER_AR "") +set(CMAKE_RANLIB ":") +set(CMAKE_CXX_COMPILER_RANLIB "") +set(CMAKE_LINKER "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.39.33519/bin/Hostx64/arm64/link.exe") +set(CMAKE_MT "C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/mt.exe") +set(CMAKE_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 ) + +# 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 "") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.27.4/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.27.4/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..e882bd5 Binary files /dev/null and b/build/CMakeFiles/3.27.4/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/CMakeFiles/3.27.4/CMakeRCCompiler.cmake b/build/CMakeFiles/3.27.4/CMakeRCCompiler.cmake new file mode 100644 index 0000000..4c9d9a8 --- /dev/null +++ b/build/CMakeFiles/3.27.4/CMakeRCCompiler.cmake @@ -0,0 +1,6 @@ +set(CMAKE_RC_COMPILER "C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/rc.exe") +set(CMAKE_RC_COMPILER_ARG1 "") +set(CMAKE_RC_COMPILER_LOADED 1) +set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC) +set(CMAKE_RC_OUTPUT_EXTENSION .res) +set(CMAKE_RC_COMPILER_ENV_VAR "RC") diff --git a/build/CMakeFiles/3.27.4/CMakeSystem.cmake b/build/CMakeFiles/3.27.4/CMakeSystem.cmake new file mode 100644 index 0000000..dc8b200 --- /dev/null +++ b/build/CMakeFiles/3.27.4/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.26120") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.26120") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.26120") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.26120") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.27.4/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..52d56e2 --- /dev/null +++ b/build/CMakeFiles/3.27.4/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.4/CompilerIdCXX/CompilerIdCXX.exe b/build/CMakeFiles/3.27.4/CompilerIdCXX/CompilerIdCXX.exe new file mode 100644 index 0000000..bc520f6 Binary files /dev/null and b/build/CMakeFiles/3.27.4/CompilerIdCXX/CompilerIdCXX.exe differ diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/CompilerIdCXX.vcxproj b/build/CMakeFiles/3.27.4/CompilerIdCXX/CompilerIdCXX.vcxproj new file mode 100644 index 0000000..8ccb657 --- /dev/null +++ b/build/CMakeFiles/3.27.4/CompilerIdCXX/CompilerIdCXX.vcxproj @@ -0,0 +1,72 @@ + + + + + Debug + arm64 + + + + {CAE07175-D007-4FC3-BFE8-47B392814159} + CompilerIdCXX + Win32Proj + + + 10.0.22621.0 + + + + + + + + + x64 + + + Application + v143 + + MultiByte + + + + + + + <_ProjectFileVersion>10.0.30319.1 + .\ + $(Configuration)\ + false + + + + Disabled + %(PreprocessorDefinitions) + false + EnableFastChecks + MultiThreadedDebugDLL + + + TurnOffAllWarnings + + + + + + false + Console + + + + for %%i in (cl.exe) do %40echo CMAKE_CXX_COMPILER=%%~$PATH:i + + + + + + + + + + diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj new file mode 100644 index 0000000..1633c76 Binary files /dev/null and b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj differ diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.exe.recipe b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.exe.recipe new file mode 100644 index 0000000..d740986 --- /dev/null +++ b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.exe.recipe @@ -0,0 +1,11 @@ + + + + + A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CompilerIdCXX\CompilerIdCXX.exe + + + + + + \ No newline at end of file diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog new file mode 100644 index 0000000..0d4f924 Binary files /dev/null and b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog differ diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog new file mode 100644 index 0000000..4687874 Binary files /dev/null and b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog differ diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog new file mode 100644 index 0000000..128d15a Binary files /dev/null and b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog differ diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/Cl.items.tlog b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/Cl.items.tlog new file mode 100644 index 0000000..64b64a1 --- /dev/null +++ b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/Cl.items.tlog @@ -0,0 +1 @@ +A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CompilerIdCXX\CMakeCXXCompilerId.cpp;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CompilerIdCXX\Debug\CMakeCXXCompilerId.obj diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate new file mode 100644 index 0000000..9c473ef --- /dev/null +++ b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.39.33519:TargetPlatformVersion=10.0.22621.0: +Debug|arm64|A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CompilerIdCXX\| diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog new file mode 100644 index 0000000..7b2fb5d Binary files /dev/null and b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog differ diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog new file mode 100644 index 0000000..bf08132 Binary files /dev/null and b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog differ diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.secondary.1.tlog b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.secondary.1.tlog new file mode 100644 index 0000000..f94f125 --- /dev/null +++ b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.secondary.1.tlog @@ -0,0 +1 @@ +^A:\WORKSPACE\SPECIAL-BROCCOLI\BUILD\CMAKEFILES\3.27.4\COMPILERIDCXX\DEBUG\CMAKECXXCOMPILERID.OBJ diff --git a/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog new file mode 100644 index 0000000..d60c2b0 Binary files /dev/null and b/build/CMakeFiles/3.27.4/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog differ diff --git a/build/CMakeFiles/3.27.4/VCTargetsPath.txt b/build/CMakeFiles/3.27.4/VCTargetsPath.txt new file mode 100644 index 0000000..513c277 --- /dev/null +++ b/build/CMakeFiles/3.27.4/VCTargetsPath.txt @@ -0,0 +1 @@ +C:/Program Files/Microsoft Visual Studio/2022/Community/MSBuild/Microsoft/VC/v170 diff --git a/build/CMakeFiles/3.27.4/VCTargetsPath.vcxproj b/build/CMakeFiles/3.27.4/VCTargetsPath.vcxproj new file mode 100644 index 0000000..08741fe --- /dev/null +++ b/build/CMakeFiles/3.27.4/VCTargetsPath.vcxproj @@ -0,0 +1,31 @@ + + + + + Debug + arm64 + + + + {F3FC6D86-508D-3FB1-96D2-995F08B142EC} + Win32Proj + arm64 + 10.0.22621.0 + + + + x64 + + + Utility + MultiByte + v143 + + + + + echo VCTargetsPath=$(VCTargetsPath) + + + + diff --git a/build/CMakeFiles/3.27.4/VCTargetsPath/arm64/Debug/VCTargetsPath.recipe b/build/CMakeFiles/3.27.4/VCTargetsPath/arm64/Debug/VCTargetsPath.recipe new file mode 100644 index 0000000..09535e3 --- /dev/null +++ b/build/CMakeFiles/3.27.4/VCTargetsPath/arm64/Debug/VCTargetsPath.recipe @@ -0,0 +1,11 @@ + + + + + A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\arm64\Debug\VCTargetsPath + + + + + + \ No newline at end of file diff --git a/build/CMakeFiles/3.27.4/VCTargetsPath/arm64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate b/build/CMakeFiles/3.27.4/VCTargetsPath/arm64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate new file mode 100644 index 0000000..b1e2edb --- /dev/null +++ b/build/CMakeFiles/3.27.4/VCTargetsPath/arm64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.39.33519:TargetPlatformVersion=10.0.22621.0: +Debug|arm64|A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\| diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..5af28b7 --- /dev/null +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,120 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeDetermineSystem.cmake:211 (message)" + - "CMakeLists.txt:3 (project)" + message: | + The system is: Windows - 10.0.26120 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:3 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: + Build flags: + Id flags: + + The output was: + 0 + Version MSBuild 17.9.8+b34f75857 pour .NET Framework + La génération a démarré 22/05/2024 10:00:42. + + Projet "A:\\workspace\\special-broccoli\\build\\CMakeFiles\\3.27.4\\CompilerIdCXX\\CompilerIdCXX.vcxproj" sur le noud 1 (cibles par défaut). + PrepareForBuild: + Création du répertoire "Debug\\". + La sortie structurée est activée. La mise en forme du compilateur diagnostics reflète la hiérarchie des erreurs. Pour plus d'informations, consultez https://aka.ms/cpp/structured-output. + Création du répertoire "Debug\\CompilerIdCXX.tlog\\". + InitializeBuildStatus: + Création de "Debug\\CompilerIdCXX.tlog\\unsuccessfulbuild", car "AlwaysCreate" a été spécifié. + Mise à jour de l'horodatage "Debug\\CompilerIdCXX.tlog\\unsuccessfulbuild". + ClCompile: + C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.39.33519\\bin\\HostX64\\arm64\\CL.exe /c /nologo /W0 /WX- /diagnostics:column /Od /Oy- /D _ARM64_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1 /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"Debug\\\\" /Fd"Debug\\vc143.pdb" /external:W0 /Gd /TP /analyze- /FC /errorReport:queue CMakeCXXCompilerId.cpp + CMakeCXXCompilerId.cpp + Link: + C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.39.33519\\bin\\HostX64\\arm64\\link.exe /ERRORREPORT:QUEUE /OUT:".\\CompilerIdCXX.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:".\\CompilerIdCXX.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\\CompilerIdCXX.lib" /MACHINE:ARM64 Debug\\CMakeCXXCompilerId.obj + CompilerIdCXX.vcxproj -> A:\\workspace\\special-broccoli\\build\\CMakeFiles\\3.27.4\\CompilerIdCXX\\CompilerIdCXX.exe + PostBuildEvent: + for %%i in (cl.exe) do @echo CMAKE_CXX_COMPILER=%%~$PATH:i + :VCEnd + CMAKE_CXX_COMPILER=C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.39.33519\\bin\\Hostx64\\arm64\\cl.exe + FinalizeBuildStatus: + Suppression du fichier "Debug\\CompilerIdCXX.tlog\\unsuccessfulbuild". + Mise à jour de l'horodatage "Debug\\CompilerIdCXX.tlog\\CompilerIdCXX.lastbuildstate". + Génération du projet "A:\\workspace\\special-broccoli\\build\\CMakeFiles\\3.27.4\\CompilerIdCXX\\CompilerIdCXX.vcxproj" terminée (cibles par défaut). + + La génération a réussi. + 0 Avertissement(s) + 0 Erreur(s) + + Temps écoulé 00:00:02.45 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.exe" + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.vcxproj" + + The CXX compiler identification is MSVC, found in: + A:/workspace/special-broccoli/build/CMakeFiles/3.27.4/CompilerIdCXX/CompilerIdCXX.exe + + - + kind: "try_compile-v1" + backtrace: + - "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "A:/workspace/special-broccoli/build/CMakeFiles/CMakeScratch/TryCompile-u033dx" + binary: "A:/workspace/special-broccoli/build/CMakeFiles/CMakeScratch/TryCompile-u033dx" + cmakeVariables: + CMAKE_CXX_FLAGS: "/DWIN32 /D_WINDOWS /W3 /GR /EHsc" + CMAKE_EXE_LINKER_FLAGS: "/machine:ARM64" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'A:/workspace/special-broccoli/build/CMakeFiles/CMakeScratch/TryCompile-u033dx' + + Run Build Command(s): "C:/Program Files/Microsoft Visual Studio/2022/Community/MSBuild/Current/Bin/amd64/MSBuild.exe" cmTC_bbb45.vcxproj /p:Configuration=Debug /p:Platform=arm64 /p:VisualStudioVersion=17.0 /v:n + Version MSBuild 17.9.8+b34f75857 pour .NET Framework + La génération a démarré 22/05/2024 10:00:45. + + Projet "A:\\workspace\\special-broccoli\\build\\CMakeFiles\\CMakeScratch\\TryCompile-u033dx\\cmTC_bbb45.vcxproj" sur le noud 1 (cibles par défaut). + PrepareForBuild: + Création du répertoire "cmTC_bbb45.dir\\Debug\\". + La sortie structurée est activée. La mise en forme du compilateur diagnostics reflète la hiérarchie des erreurs. Pour plus d'informations, consultez https://aka.ms/cpp/structured-output. + Création du répertoire "A:\\workspace\\special-broccoli\\build\\CMakeFiles\\CMakeScratch\\TryCompile-u033dx\\Debug\\". + Création du répertoire "cmTC_bbb45.dir\\Debug\\cmTC_bbb45.tlog\\". + InitializeBuildStatus: + Création de "cmTC_bbb45.dir\\Debug\\cmTC_bbb45.tlog\\unsuccessfulbuild", car "AlwaysCreate" a été spécifié. + Mise à jour de l'horodatage "cmTC_bbb45.dir\\Debug\\cmTC_bbb45.tlog\\unsuccessfulbuild". + ClCompile: + C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.39.33519\\bin\\HostX64\\arm64\\CL.exe /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /Oy- /D _ARM64_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1 /D _MBCS /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\\"Debug\\"" /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_bbb45.dir\\Debug\\\\" /Fd"cmTC_bbb45.dir\\Debug\\vc143.pdb" /external:W3 /Gd /TP /analyze- /errorReport:queue "C:\\Program Files\\CMake\\share\\cmake-3.27\\Modules\\CMakeCXXCompilerABI.cpp" + Compilateur d'optimisation Microsoft (R) C/C++ version 19.39.33523 pour ARM64 + Copyright (C) Microsoft Corporation. Tous droits réservés. + cl /c /Zi /W3 /WX- /diagnostics:column /Od /Ob0 /Oy- /D _ARM64_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1 /D _MBCS /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\\"Debug\\"" /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_bbb45.dir\\Debug\\\\" /Fd"cmTC_bbb45.dir\\Debug\\vc143.pdb" /external:W3 /Gd /TP /analyze- /errorReport:queue "C:\\Program Files\\CMake\\share\\cmake-3.27\\Modules\\CMakeCXXCompilerABI.cpp" + CMakeCXXCompilerABI.cpp + Link: + C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.39.33519\\bin\\HostX64\\arm64\\link.exe /ERRORREPORT:QUEUE /OUT:"A:\\workspace\\special-broccoli\\build\\CMakeFiles\\CMakeScratch\\TryCompile-u033dx\\Debug\\cmTC_bbb45.exe" /INCREMENTAL /ILK:"cmTC_bbb45.dir\\Debug\\cmTC_bbb45.ilk" /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"A:/workspace/special-broccoli/build/CMakeFiles/CMakeScratch/TryCompile-u033dx/Debug/cmTC_bbb45.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"A:/workspace/special-broccoli/build/CMakeFiles/CMakeScratch/TryCompile-u033dx/Debug/cmTC_bbb45.lib" /MACHINE:ARM64 /machine:ARM64 cmTC_bbb45.dir\\Debug\\CMakeCXXCompilerABI.obj + cmTC_bbb45.vcxproj -> A:\\workspace\\special-broccoli\\build\\CMakeFiles\\CMakeScratch\\TryCompile-u033dx\\Debug\\cmTC_bbb45.exe + FinalizeBuildStatus: + Suppression du fichier "cmTC_bbb45.dir\\Debug\\cmTC_bbb45.tlog\\unsuccessfulbuild". + Mise à jour de l'horodatage "cmTC_bbb45.dir\\Debug\\cmTC_bbb45.tlog\\cmTC_bbb45.lastbuildstate". + Génération du projet "A:\\workspace\\special-broccoli\\build\\CMakeFiles\\CMakeScratch\\TryCompile-u033dx\\cmTC_bbb45.vcxproj" terminée (cibles par défaut). + + La génération a réussi. + 0 Avertissement(s) + 0 Erreur(s) + + Temps écoulé 00:00:01.51 + + exitCode: 0 +... diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..6a04783 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,4 @@ +A:/workspace/special-broccoli/build/CMakeFiles/app.dir +A:/workspace/special-broccoli/build/CMakeFiles/INSTALL.dir +A:/workspace/special-broccoli/build/CMakeFiles/ALL_BUILD.dir +A:/workspace/special-broccoli/build/CMakeFiles/ZERO_CHECK.dir diff --git a/build/CMakeFiles/app_autogen.dir/AutogenInfo.json b/build/CMakeFiles/app_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..da30327 --- /dev/null +++ b/build/CMakeFiles/app_autogen.dir/AutogenInfo.json @@ -0,0 +1,179 @@ +{ + "BUILD_DIR" : "A:/workspace/special-broccoli/build/app_autogen", + "CMAKE_BINARY_DIR" : "A:/workspace/special-broccoli/build", + "CMAKE_CURRENT_BINARY_DIR" : "A:/workspace/special-broccoli/build", + "CMAKE_CURRENT_SOURCE_DIR" : "A:/workspace/special-broccoli/app", + "CMAKE_EXECUTABLE" : "C:/Program Files/CMake/bin/cmake.exe", + "CMAKE_LIST_FILES" : + [ + "A:/workspace/special-broccoli/app/CMakeLists.txt", + "A:/workspace/special-broccoli/build/CMakeFiles/3.27.4/CMakeSystem.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake", + "A:/workspace/special-broccoli/build/CMakeFiles/3.27.4/CMakeCXXCompiler.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeGenericSystem.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/Windows.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeCXXInformation.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/Compiler/MSVC-CXX.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/Compiler/MSVC.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/Windows-MSVC-CXX.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/Windows-MSVC.cmake", + "A:/workspace/special-broccoli/build/CMakeFiles/3.27.4/CMakeRCCompiler.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeRCInformation.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5ConfigVersion.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5Config.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5ConfigVersion.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5Config.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5ModuleLocation.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfig.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreMacros.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeParseArguments.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QPdfPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeParseArguments.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake", + "C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeParseArguments.cmake", + "C:/Program Files/CMake/share/cmake-3.27/Modules/GNUInstallDirs.cmake" + ], + "CMAKE_SOURCE_DIR" : "A:/workspace/special-broccoli/app", + "DEP_FILE" : "", + "DEP_FILE_RULE_NAME" : "", + "HEADERS" : + [ + [ + "A:/workspace/special-broccoli/app/mainwindow.h", + "MU", + "EWIEGA46WW/moc_mainwindow.cpp", + null + ] + ], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "A:/workspace/special-broccoli/build/app_autogen/include", + "INCLUDE_DIR_Debug" : "A:/workspace/special-broccoli/build/app_autogen/include_Debug", + "INCLUDE_DIR_MinSizeRel" : "A:/workspace/special-broccoli/build/app_autogen/include_MinSizeRel", + "INCLUDE_DIR_RelWithDebInfo" : "A:/workspace/special-broccoli/build/app_autogen/include_RelWithDebInfo", + "INCLUDE_DIR_Release" : "A:/workspace/special-broccoli/build/app_autogen/include_Release", + "MOC_COMPILATION_FILE" : "A:/workspace/special-broccoli/build/app_autogen/mocs_compilation.cpp", + "MOC_COMPILATION_FILE_Debug" : "A:/workspace/special-broccoli/build/app_autogen/mocs_compilation_Debug.cpp", + "MOC_COMPILATION_FILE_MinSizeRel" : "A:/workspace/special-broccoli/build/app_autogen/mocs_compilation_MinSizeRel.cpp", + "MOC_COMPILATION_FILE_RelWithDebInfo" : "A:/workspace/special-broccoli/build/app_autogen/mocs_compilation_RelWithDebInfo.cpp", + "MOC_COMPILATION_FILE_Release" : "A:/workspace/special-broccoli/build/app_autogen/mocs_compilation_Release.cpp", + "MOC_DEFINITIONS" : [], + "MOC_DEFINITIONS_Debug" : [ "QT_CORE_LIB", "QT_GUI_LIB", "QT_WIDGETS_LIB", "WIN32" ], + "MOC_DEFINITIONS_MinSizeRel" : [ "QT_CORE_LIB", "QT_GUI_LIB", "QT_NO_DEBUG", "QT_WIDGETS_LIB", "WIN32" ], + "MOC_DEFINITIONS_RelWithDebInfo" : [ "QT_CORE_LIB", "QT_GUI_LIB", "QT_NO_DEBUG", "QT_WIDGETS_LIB", "WIN32" ], + "MOC_DEFINITIONS_Release" : [ "QT_CORE_LIB", "QT_GUI_LIB", "QT_NO_DEBUG", "QT_WIDGETS_LIB", "WIN32" ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : [], + "MOC_INCLUDES_Debug" : + [ + "C:/Users/beo.MSI/anaconda3/Library/include/qt", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtWidgets", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtGui", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtANGLE", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtCore", + "C:/Users/beo.MSI/anaconda3/Library/mkspecs/win32-msvc" + ], + "MOC_INCLUDES_MinSizeRel" : + [ + "C:/Users/beo.MSI/anaconda3/Library/include/qt", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtWidgets", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtGui", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtANGLE", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtCore", + "C:/Users/beo.MSI/anaconda3/Library/mkspecs/win32-msvc" + ], + "MOC_INCLUDES_RelWithDebInfo" : + [ + "C:/Users/beo.MSI/anaconda3/Library/include/qt", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtWidgets", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtGui", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtANGLE", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtCore", + "C:/Users/beo.MSI/anaconda3/Library/mkspecs/win32-msvc" + ], + "MOC_INCLUDES_Release" : + [ + "C:/Users/beo.MSI/anaconda3/Library/include/qt", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtWidgets", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtGui", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtANGLE", + "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtCore", + "C:/Users/beo.MSI/anaconda3/Library/mkspecs/win32-msvc" + ], + "MOC_MACRO_NAMES" : [ "Q_OBJECT", "Q_GADGET", "Q_NAMESPACE", "Q_NAMESPACE_EXPORT" ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : [], + "MOC_PREDEFS_FILE" : "", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : [], + "MULTI_CONFIG" : true, + "PARALLEL" : 6, + "PARSE_CACHE_FILE" : "A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/ParseCache.txt", + "PARSE_CACHE_FILE_Debug" : "A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/ParseCache_Debug.txt", + "PARSE_CACHE_FILE_MinSizeRel" : "A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/ParseCache_MinSizeRel.txt", + "PARSE_CACHE_FILE_RelWithDebInfo" : "A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/ParseCache_RelWithDebInfo.txt", + "PARSE_CACHE_FILE_Release" : "A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/ParseCache_Release.txt", + "QT_MOC_EXECUTABLE" : "C:/Users/beo.MSI/anaconda3/Library/bin/moc.exe", + "QT_UIC_EXECUTABLE" : "C:/Users/beo.MSI/anaconda3/Library/bin/uic.exe", + "QT_VERSION_MAJOR" : 5, + "QT_VERSION_MINOR" : 15, + "SETTINGS_FILE" : "A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/AutogenUsed.txt", + "SETTINGS_FILE_Debug" : "A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/AutogenUsed_Debug.txt", + "SETTINGS_FILE_MinSizeRel" : "A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/AutogenUsed_MinSizeRel.txt", + "SETTINGS_FILE_RelWithDebInfo" : "A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/AutogenUsed_RelWithDebInfo.txt", + "SETTINGS_FILE_Release" : "A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/AutogenUsed_Release.txt", + "SOURCES" : + [ + [ "A:/workspace/special-broccoli/app/main.cpp", "MU", null ], + [ "A:/workspace/special-broccoli/app/mainwindow.cpp", "MU", null ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : [], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/build/CMakeFiles/app_fr_FR.ts_lst_file b/build/CMakeFiles/app_fr_FR.ts_lst_file new file mode 100644 index 0000000..65aacec --- /dev/null +++ b/build/CMakeFiles/app_fr_FR.ts_lst_file @@ -0,0 +1 @@ +A:/workspace/special-broccoli/app 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/e793a0cccb0a34010bc1d6447297cbc6/app_fr_FR.ts.rule b/build/CMakeFiles/e793a0cccb0a34010bc1d6447297cbc6/app_fr_FR.ts.rule new file mode 100644 index 0000000..2d3998c --- /dev/null +++ b/build/CMakeFiles/e793a0cccb0a34010bc1d6447297cbc6/app_fr_FR.ts.rule @@ -0,0 +1 @@ +# generated from CMake diff --git a/build/CMakeFiles/generate.stamp b/build/CMakeFiles/generate.stamp new file mode 100644 index 0000000..9b5f49f --- /dev/null +++ b/build/CMakeFiles/generate.stamp @@ -0,0 +1 @@ +# CMake generation timestamp file for this directory. diff --git a/build/CMakeFiles/generate.stamp.depend b/build/CMakeFiles/generate.stamp.depend new file mode 100644 index 0000000..d7a3ae6 --- /dev/null +++ b/build/CMakeFiles/generate.stamp.depend @@ -0,0 +1,61 @@ +# CMake generation dependency list for this directory. +A:/workspace/special-broccoli/app/CMakeLists.txt +A:/workspace/special-broccoli/build/CMakeFiles/3.27.4/CMakeCXXCompiler.cmake +A:/workspace/special-broccoli/build/CMakeFiles/3.27.4/CMakeRCCompiler.cmake +A:/workspace/special-broccoli/build/CMakeFiles/3.27.4/CMakeSystem.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeCXXInformation.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeGenericSystem.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeParseArguments.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeRCInformation.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/Compiler/MSVC-CXX.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/Compiler/MSVC.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/GNUInstallDirs.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/Windows-MSVC-CXX.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/Windows-MSVC.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/Windows.cmake +C:/Program Files/CMake/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5Config.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5ConfigVersion.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5/Qt5ModuleLocation.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfig.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Core/Qt5CoreMacros.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QPdfPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake +C:/Users/beo.MSI/anaconda3/Library/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake diff --git a/build/CMakeFiles/generate.stamp.list b/build/CMakeFiles/generate.stamp.list new file mode 100644 index 0000000..3d40abb --- /dev/null +++ b/build/CMakeFiles/generate.stamp.list @@ -0,0 +1 @@ +A:/workspace/special-broccoli/build/CMakeFiles/generate.stamp diff --git a/build/INSTALL.vcxproj b/build/INSTALL.vcxproj new file mode 100644 index 0000000..76af3fc --- /dev/null +++ b/build/INSTALL.vcxproj @@ -0,0 +1,208 @@ + + + + x64 + + + + Debug + arm64 + + + Release + arm64 + + + MinSizeRel + arm64 + + + RelWithDebInfo + arm64 + + + + {BB682E86-93FA-34A8-B872-9EDE638D2D66} + Win32Proj + 10.0.22621.0 + arm64 + INSTALL + NoUpgrade + + + + Utility + MultiByte + v143 + + + Utility + MultiByte + v143 + + + Utility + MultiByte + v143 + + + Utility + MultiByte + v143 + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + + + + Always + + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + + + + + Always + + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + + + + + Always + + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + + + + + Always + + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + + + + + true + + setlocal +cd . +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + %(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\INSTALL_force + false + false + true + + setlocal +cd . +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + %(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\INSTALL_force + false + false + true + + setlocal +cd . +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + %(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\INSTALL_force + false + false + true + + setlocal +cd . +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + %(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\INSTALL_force + false + false + + + + + {9D9A0227-F5F0-3F8B-A236-3786B5465D74} + ZERO_CHECK + false + Never + + + {092A1526-6EA6-3C56-A529-C62A920F89A6} + ALL_BUILD + false + Never + + + + + + \ No newline at end of file diff --git a/build/INSTALL.vcxproj.filters b/build/INSTALL.vcxproj.filters new file mode 100644 index 0000000..85ea6e6 --- /dev/null +++ b/build/INSTALL.vcxproj.filters @@ -0,0 +1,13 @@ + + + + + CMake Rules + + + + + {9F01B20B-232A-323D-A5DE-536E9C2154FF} + + + diff --git a/build/ZERO_CHECK.vcxproj b/build/ZERO_CHECK.vcxproj new file mode 100644 index 0000000..3e6e448 --- /dev/null +++ b/build/ZERO_CHECK.vcxproj @@ -0,0 +1,178 @@ + + + + x64 + + + false + + + + Debug + arm64 + + + Release + arm64 + + + MinSizeRel + arm64 + + + RelWithDebInfo + arm64 + + + + {9D9A0227-F5F0-3F8B-A236-3786B5465D74} + Win32Proj + 10.0.22621.0 + arm64 + ZERO_CHECK + NoUpgrade + + + + Utility + MultiByte + v143 + + + Utility + MultiByte + v143 + + + Utility + MultiByte + v143 + + + Utility + MultiByte + v143 + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + + + + %(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + %(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + %(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + %(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + Always + true + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -SA:/workspace/special-broccoli/app -BA:/workspace/special-broccoli/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file A:/workspace/special-broccoli/build/app.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\app\CMakeLists.txt;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeCXXCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeRCCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-Initialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\WindowsPaths.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5Config.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ModuleLocation.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtrasMkspecDir.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QMinimalIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QOffscreenIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QPdfPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTuioTouchPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QVirtualKeyboardPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebGLIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QXdgDesktopPortalThemePlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin.cmake;%(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\generate.stamp + false + true + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -SA:/workspace/special-broccoli/app -BA:/workspace/special-broccoli/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file A:/workspace/special-broccoli/build/app.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\app\CMakeLists.txt;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeCXXCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeRCCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-Initialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\WindowsPaths.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5Config.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ModuleLocation.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtrasMkspecDir.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QMinimalIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QOffscreenIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QPdfPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTuioTouchPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QVirtualKeyboardPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebGLIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QXdgDesktopPortalThemePlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin.cmake;%(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\generate.stamp + false + true + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -SA:/workspace/special-broccoli/app -BA:/workspace/special-broccoli/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file A:/workspace/special-broccoli/build/app.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\app\CMakeLists.txt;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeCXXCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeRCCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-Initialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\WindowsPaths.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5Config.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ModuleLocation.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtrasMkspecDir.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QMinimalIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QOffscreenIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QPdfPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTuioTouchPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QVirtualKeyboardPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebGLIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QXdgDesktopPortalThemePlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin.cmake;%(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\generate.stamp + false + true + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -SA:/workspace/special-broccoli/app -BA:/workspace/special-broccoli/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file A:/workspace/special-broccoli/build/app.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\app\CMakeLists.txt;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeCXXCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeRCCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-Initialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\WindowsPaths.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5Config.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ModuleLocation.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtrasMkspecDir.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QMinimalIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QOffscreenIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QPdfPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTuioTouchPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QVirtualKeyboardPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebGLIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QXdgDesktopPortalThemePlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin.cmake;%(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\generate.stamp + false + + + + + + + + + + \ No newline at end of file diff --git a/build/ZERO_CHECK.vcxproj.filters b/build/ZERO_CHECK.vcxproj.filters new file mode 100644 index 0000000..ae63a6d --- /dev/null +++ b/build/ZERO_CHECK.vcxproj.filters @@ -0,0 +1,13 @@ + + + + + CMake Rules + + + + + {9F01B20B-232A-323D-A5DE-536E9C2154FF} + + + diff --git a/build/app.sln b/build/app.sln new file mode 100644 index 0000000..fd92e1f --- /dev/null +++ b/build/app.sln @@ -0,0 +1,67 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{092A1526-6EA6-3C56-A529-C62A920F89A6}" + ProjectSection(ProjectDependencies) = postProject + {9D9A0227-F5F0-3F8B-A236-3786B5465D74} = {9D9A0227-F5F0-3F8B-A236-3786B5465D74} + {824BE532-C0AB-3236-AE3F-2D70ACA6F057} = {824BE532-C0AB-3236-AE3F-2D70ACA6F057} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INSTALL", "INSTALL.vcxproj", "{BB682E86-93FA-34A8-B872-9EDE638D2D66}" + ProjectSection(ProjectDependencies) = postProject + {092A1526-6EA6-3C56-A529-C62A920F89A6} = {092A1526-6EA6-3C56-A529-C62A920F89A6} + {9D9A0227-F5F0-3F8B-A236-3786B5465D74} = {9D9A0227-F5F0-3F8B-A236-3786B5465D74} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZERO_CHECK", "ZERO_CHECK.vcxproj", "{9D9A0227-F5F0-3F8B-A236-3786B5465D74}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "app", "app.vcxproj", "{824BE532-C0AB-3236-AE3F-2D70ACA6F057}" + ProjectSection(ProjectDependencies) = postProject + {9D9A0227-F5F0-3F8B-A236-3786B5465D74} = {9D9A0227-F5F0-3F8B-A236-3786B5465D74} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|arm64 = Debug|arm64 + Release|arm64 = Release|arm64 + MinSizeRel|arm64 = MinSizeRel|arm64 + RelWithDebInfo|arm64 = RelWithDebInfo|arm64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {092A1526-6EA6-3C56-A529-C62A920F89A6}.Debug|arm64.ActiveCfg = Debug|arm64 + {092A1526-6EA6-3C56-A529-C62A920F89A6}.Debug|arm64.Build.0 = Debug|arm64 + {092A1526-6EA6-3C56-A529-C62A920F89A6}.Release|arm64.ActiveCfg = Release|arm64 + {092A1526-6EA6-3C56-A529-C62A920F89A6}.Release|arm64.Build.0 = Release|arm64 + {092A1526-6EA6-3C56-A529-C62A920F89A6}.MinSizeRel|arm64.ActiveCfg = MinSizeRel|arm64 + {092A1526-6EA6-3C56-A529-C62A920F89A6}.MinSizeRel|arm64.Build.0 = MinSizeRel|arm64 + {092A1526-6EA6-3C56-A529-C62A920F89A6}.RelWithDebInfo|arm64.ActiveCfg = RelWithDebInfo|arm64 + {092A1526-6EA6-3C56-A529-C62A920F89A6}.RelWithDebInfo|arm64.Build.0 = RelWithDebInfo|arm64 + {BB682E86-93FA-34A8-B872-9EDE638D2D66}.Debug|arm64.ActiveCfg = Debug|arm64 + {BB682E86-93FA-34A8-B872-9EDE638D2D66}.Release|arm64.ActiveCfg = Release|arm64 + {BB682E86-93FA-34A8-B872-9EDE638D2D66}.MinSizeRel|arm64.ActiveCfg = MinSizeRel|arm64 + {BB682E86-93FA-34A8-B872-9EDE638D2D66}.RelWithDebInfo|arm64.ActiveCfg = RelWithDebInfo|arm64 + {9D9A0227-F5F0-3F8B-A236-3786B5465D74}.Debug|arm64.ActiveCfg = Debug|arm64 + {9D9A0227-F5F0-3F8B-A236-3786B5465D74}.Debug|arm64.Build.0 = Debug|arm64 + {9D9A0227-F5F0-3F8B-A236-3786B5465D74}.Release|arm64.ActiveCfg = Release|arm64 + {9D9A0227-F5F0-3F8B-A236-3786B5465D74}.Release|arm64.Build.0 = Release|arm64 + {9D9A0227-F5F0-3F8B-A236-3786B5465D74}.MinSizeRel|arm64.ActiveCfg = MinSizeRel|arm64 + {9D9A0227-F5F0-3F8B-A236-3786B5465D74}.MinSizeRel|arm64.Build.0 = MinSizeRel|arm64 + {9D9A0227-F5F0-3F8B-A236-3786B5465D74}.RelWithDebInfo|arm64.ActiveCfg = RelWithDebInfo|arm64 + {9D9A0227-F5F0-3F8B-A236-3786B5465D74}.RelWithDebInfo|arm64.Build.0 = RelWithDebInfo|arm64 + {824BE532-C0AB-3236-AE3F-2D70ACA6F057}.Debug|arm64.ActiveCfg = Debug|arm64 + {824BE532-C0AB-3236-AE3F-2D70ACA6F057}.Debug|arm64.Build.0 = Debug|arm64 + {824BE532-C0AB-3236-AE3F-2D70ACA6F057}.Release|arm64.ActiveCfg = Release|arm64 + {824BE532-C0AB-3236-AE3F-2D70ACA6F057}.Release|arm64.Build.0 = Release|arm64 + {824BE532-C0AB-3236-AE3F-2D70ACA6F057}.MinSizeRel|arm64.ActiveCfg = MinSizeRel|arm64 + {824BE532-C0AB-3236-AE3F-2D70ACA6F057}.MinSizeRel|arm64.Build.0 = MinSizeRel|arm64 + {824BE532-C0AB-3236-AE3F-2D70ACA6F057}.RelWithDebInfo|arm64.ActiveCfg = RelWithDebInfo|arm64 + {824BE532-C0AB-3236-AE3F-2D70ACA6F057}.RelWithDebInfo|arm64.Build.0 = RelWithDebInfo|arm64 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {BCDA1409-BFF1-3848-9014-D9AC0750CFF2} + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/build/app.vcxproj b/build/app.vcxproj new file mode 100644 index 0000000..6474073 --- /dev/null +++ b/build/app.vcxproj @@ -0,0 +1,489 @@ + + + + x64 + + + + Debug + arm64 + + + Release + arm64 + + + MinSizeRel + arm64 + + + RelWithDebInfo + arm64 + + + + {824BE532-C0AB-3236-AE3F-2D70ACA6F057} + Win32Proj + 10.0.22621.0 + arm64 + app + NoUpgrade + + + + Application + MultiByte + v143 + + + Application + MultiByte + v143 + + + Application + MultiByte + v143 + + + Application + MultiByte + v143 + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + A:\workspace\special-broccoli\build\Debug\ + app.dir\Debug\ + app + .exe + true + true + A:\workspace\special-broccoli\build\Release\ + app.dir\Release\ + app + .exe + false + true + A:\workspace\special-broccoli\build\MinSizeRel\ + app.dir\MinSizeRel\ + app + .exe + false + true + A:\workspace\special-broccoli\build\RelWithDebInfo\ + app.dir\RelWithDebInfo\ + app + .exe + true + true + + + + A:\workspace\special-broccoli\build\app_autogen\include_Debug;%(AdditionalIncludeDirectories) + %(AdditionalOptions) /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtWidgets" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtGui" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtANGLE" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtCore" /external:I "C:/Users/beo.MSI/anaconda3/Library/./mkspecs/win32-msvc" + $(IntDir) + EnableFastChecks + ProgramDatabase + Sync + TurnOffAllWarnings + Disabled + stdcpp17 + Disabled + NotUsing + MultiThreadedDebugDLL + true + false + Level3 + %(PreprocessorDefinitions);WIN32;_WINDOWS;QT_WIDGETS_LIB;QT_GUI_LIB;QT_CORE_LIB;CMAKE_INTDIR="Debug" + $(IntDir) + + + %(PreprocessorDefinitions);WIN32;_DEBUG;_WINDOWS;QT_WIDGETS_LIB;QT_GUI_LIB;QT_CORE_LIB;CMAKE_INTDIR=\"Debug\" + A:\workspace\special-broccoli\build\app_autogen\include_Debug;C:\Users\beo.MSI\anaconda3\Library\include\qt;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtWidgets;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtGui;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtANGLE;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtCore;C:\Users\beo.MSI\anaconda3\Library\.\mkspecs\win32-msvc;%(AdditionalIncludeDirectories) + + + A:\workspace\special-broccoli\build\app_autogen\include_Debug;C:\Users\beo.MSI\anaconda3\Library\include\qt;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtWidgets;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtGui;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtANGLE;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtCore;C:\Users\beo.MSI\anaconda3\Library\.\mkspecs\win32-msvc;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + Always + Automatic MOC and UIC for target app + setlocal +cd A:\workspace\special-broccoli\build +if %errorlevel% neq 0 goto :cmEnd +A: +if %errorlevel% neq 0 goto :cmEnd +"C:\Program Files\CMake\bin\cmake.exe" -E cmake_autogen A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/AutogenInfo.json Debug +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + + + C:\Users\beo.MSI\anaconda3\Library\lib\Qt5Widgets_conda.lib;C:\Users\beo.MSI\anaconda3\Library\lib\Qt5Gui_conda.lib;C:\Users\beo.MSI\anaconda3\Library\lib\Qt5Core_conda.lib;C:\Users\beo.MSI\anaconda3\Library\lib\qtmain_conda.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + %(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:ARM64 + true + %(IgnoreSpecificDefaultLibraries) + A:/workspace/special-broccoli/build/Debug/app.lib + A:/workspace/special-broccoli/build/Debug/app.pdb + Windows + + + false + + + + + A:\workspace\special-broccoli\build\app_autogen\include_Release;%(AdditionalIncludeDirectories) + %(AdditionalOptions) /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtWidgets" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtGui" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtANGLE" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtCore" /external:I "C:/Users/beo.MSI/anaconda3/Library/./mkspecs/win32-msvc" + $(IntDir) + Sync + TurnOffAllWarnings + AnySuitable + stdcpp17 + MaxSpeed + NotUsing + MultiThreadedDLL + true + false + Level3 + %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;QT_WIDGETS_LIB;QT_GUI_LIB;QT_CORE_LIB;QT_NO_DEBUG;CMAKE_INTDIR="Release" + $(IntDir) + + + + + %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;QT_WIDGETS_LIB;QT_GUI_LIB;QT_CORE_LIB;QT_NO_DEBUG;CMAKE_INTDIR=\"Release\" + A:\workspace\special-broccoli\build\app_autogen\include_Release;C:\Users\beo.MSI\anaconda3\Library\include\qt;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtWidgets;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtGui;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtANGLE;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtCore;C:\Users\beo.MSI\anaconda3\Library\.\mkspecs\win32-msvc;%(AdditionalIncludeDirectories) + + + A:\workspace\special-broccoli\build\app_autogen\include_Release;C:\Users\beo.MSI\anaconda3\Library\include\qt;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtWidgets;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtGui;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtANGLE;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtCore;C:\Users\beo.MSI\anaconda3\Library\.\mkspecs\win32-msvc;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + Always + Automatic MOC and UIC for target app + setlocal +cd A:\workspace\special-broccoli\build +if %errorlevel% neq 0 goto :cmEnd +A: +if %errorlevel% neq 0 goto :cmEnd +"C:\Program Files\CMake\bin\cmake.exe" -E cmake_autogen A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/AutogenInfo.json Release +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + + + C:\Users\beo.MSI\anaconda3\Library\lib\Qt5Widgets_conda.lib;C:\Users\beo.MSI\anaconda3\Library\lib\Qt5Gui_conda.lib;C:\Users\beo.MSI\anaconda3\Library\lib\Qt5Core_conda.lib;C:\Users\beo.MSI\anaconda3\Library\lib\qtmain_conda.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + %(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:ARM64 + false + %(IgnoreSpecificDefaultLibraries) + A:/workspace/special-broccoli/build/Release/app.lib + A:/workspace/special-broccoli/build/Release/app.pdb + Windows + + + false + + + + + A:\workspace\special-broccoli\build\app_autogen\include_MinSizeRel;%(AdditionalIncludeDirectories) + %(AdditionalOptions) /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtWidgets" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtGui" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtANGLE" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtCore" /external:I "C:/Users/beo.MSI/anaconda3/Library/./mkspecs/win32-msvc" + $(IntDir) + Sync + TurnOffAllWarnings + OnlyExplicitInline + stdcpp17 + MinSpace + NotUsing + MultiThreadedDLL + true + false + Level3 + %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;QT_WIDGETS_LIB;QT_GUI_LIB;QT_CORE_LIB;QT_NO_DEBUG;CMAKE_INTDIR="MinSizeRel" + $(IntDir) + + + + + %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;QT_WIDGETS_LIB;QT_GUI_LIB;QT_CORE_LIB;QT_NO_DEBUG;CMAKE_INTDIR=\"MinSizeRel\" + A:\workspace\special-broccoli\build\app_autogen\include_MinSizeRel;C:\Users\beo.MSI\anaconda3\Library\include\qt;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtWidgets;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtGui;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtANGLE;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtCore;C:\Users\beo.MSI\anaconda3\Library\.\mkspecs\win32-msvc;%(AdditionalIncludeDirectories) + + + A:\workspace\special-broccoli\build\app_autogen\include_MinSizeRel;C:\Users\beo.MSI\anaconda3\Library\include\qt;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtWidgets;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtGui;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtANGLE;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtCore;C:\Users\beo.MSI\anaconda3\Library\.\mkspecs\win32-msvc;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + Always + Automatic MOC and UIC for target app + setlocal +cd A:\workspace\special-broccoli\build +if %errorlevel% neq 0 goto :cmEnd +A: +if %errorlevel% neq 0 goto :cmEnd +"C:\Program Files\CMake\bin\cmake.exe" -E cmake_autogen A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/AutogenInfo.json MinSizeRel +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + + + C:\Users\beo.MSI\anaconda3\Library\lib\Qt5Widgets_conda.lib;C:\Users\beo.MSI\anaconda3\Library\lib\Qt5Gui_conda.lib;C:\Users\beo.MSI\anaconda3\Library\lib\Qt5Core_conda.lib;C:\Users\beo.MSI\anaconda3\Library\lib\qtmain_conda.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + %(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:ARM64 + false + %(IgnoreSpecificDefaultLibraries) + A:/workspace/special-broccoli/build/MinSizeRel/app.lib + A:/workspace/special-broccoli/build/MinSizeRel/app.pdb + Windows + + + false + + + + + A:\workspace\special-broccoli\build\app_autogen\include_RelWithDebInfo;%(AdditionalIncludeDirectories) + %(AdditionalOptions) /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtWidgets" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtGui" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtANGLE" /external:I "C:/Users/beo.MSI/anaconda3/Library/include/qt/QtCore" /external:I "C:/Users/beo.MSI/anaconda3/Library/./mkspecs/win32-msvc" + $(IntDir) + ProgramDatabase + Sync + TurnOffAllWarnings + OnlyExplicitInline + stdcpp17 + MaxSpeed + NotUsing + MultiThreadedDLL + true + false + Level3 + %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;QT_WIDGETS_LIB;QT_GUI_LIB;QT_CORE_LIB;QT_NO_DEBUG;CMAKE_INTDIR="RelWithDebInfo" + $(IntDir) + + + %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;QT_WIDGETS_LIB;QT_GUI_LIB;QT_CORE_LIB;QT_NO_DEBUG;CMAKE_INTDIR=\"RelWithDebInfo\" + A:\workspace\special-broccoli\build\app_autogen\include_RelWithDebInfo;C:\Users\beo.MSI\anaconda3\Library\include\qt;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtWidgets;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtGui;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtANGLE;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtCore;C:\Users\beo.MSI\anaconda3\Library\.\mkspecs\win32-msvc;%(AdditionalIncludeDirectories) + + + A:\workspace\special-broccoli\build\app_autogen\include_RelWithDebInfo;C:\Users\beo.MSI\anaconda3\Library\include\qt;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtWidgets;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtGui;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtANGLE;C:\Users\beo.MSI\anaconda3\Library\include\qt\QtCore;C:\Users\beo.MSI\anaconda3\Library\.\mkspecs\win32-msvc;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + Always + Automatic MOC and UIC for target app + setlocal +cd A:\workspace\special-broccoli\build +if %errorlevel% neq 0 goto :cmEnd +A: +if %errorlevel% neq 0 goto :cmEnd +"C:\Program Files\CMake\bin\cmake.exe" -E cmake_autogen A:/workspace/special-broccoli/build/CMakeFiles/app_autogen.dir/AutogenInfo.json RelWithDebInfo +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + + + C:\Users\beo.MSI\anaconda3\Library\lib\Qt5Widgets_conda.lib;C:\Users\beo.MSI\anaconda3\Library\lib\Qt5Gui_conda.lib;C:\Users\beo.MSI\anaconda3\Library\lib\Qt5Core_conda.lib;C:\Users\beo.MSI\anaconda3\Library\lib\qtmain_conda.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + %(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:ARM64 + true + %(IgnoreSpecificDefaultLibraries) + A:/workspace/special-broccoli/build/RelWithDebInfo/app.lib + A:/workspace/special-broccoli/build/RelWithDebInfo/app.pdb + Windows + + + false + + + + + Generating A:/workspace/special-broccoli/app/app_fr_FR.ts + setlocal +C:\Users\beo.MSI\anaconda3\Library\bin\lupdate.exe @A:/workspace/special-broccoli/build/CMakeFiles/app_fr_FR.ts_lst_file -ts A:/workspace/special-broccoli/app/app_fr_FR.ts +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\app;%(AdditionalInputs) + A:\workspace\special-broccoli\app\app_fr_FR.ts + false + Generating A:/workspace/special-broccoli/app/app_fr_FR.ts + setlocal +C:\Users\beo.MSI\anaconda3\Library\bin\lupdate.exe @A:/workspace/special-broccoli/build/CMakeFiles/app_fr_FR.ts_lst_file -ts A:/workspace/special-broccoli/app/app_fr_FR.ts +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\app;%(AdditionalInputs) + A:\workspace\special-broccoli\app\app_fr_FR.ts + false + Generating A:/workspace/special-broccoli/app/app_fr_FR.ts + setlocal +C:\Users\beo.MSI\anaconda3\Library\bin\lupdate.exe @A:/workspace/special-broccoli/build/CMakeFiles/app_fr_FR.ts_lst_file -ts A:/workspace/special-broccoli/app/app_fr_FR.ts +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\app;%(AdditionalInputs) + A:\workspace\special-broccoli\app\app_fr_FR.ts + false + Generating A:/workspace/special-broccoli/app/app_fr_FR.ts + setlocal +C:\Users\beo.MSI\anaconda3\Library\bin\lupdate.exe @A:/workspace/special-broccoli/build/CMakeFiles/app_fr_FR.ts_lst_file -ts A:/workspace/special-broccoli/app/app_fr_FR.ts +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\app;%(AdditionalInputs) + A:\workspace\special-broccoli\app\app_fr_FR.ts + false + + + + + Always + Building Custom Rule A:/workspace/special-broccoli/app/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -SA:/workspace/special-broccoli/app -BA:/workspace/special-broccoli/build --check-stamp-file A:/workspace/special-broccoli/build/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeCXXCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeRCCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-Initialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\WindowsPaths.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5Config.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ModuleLocation.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtrasMkspecDir.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QMinimalIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QOffscreenIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QPdfPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTuioTouchPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QVirtualKeyboardPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebGLIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QXdgDesktopPortalThemePlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin.cmake;%(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\generate.stamp + false + Building Custom Rule A:/workspace/special-broccoli/app/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -SA:/workspace/special-broccoli/app -BA:/workspace/special-broccoli/build --check-stamp-file A:/workspace/special-broccoli/build/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeCXXCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeRCCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-Initialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\WindowsPaths.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5Config.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ModuleLocation.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtrasMkspecDir.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QMinimalIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QOffscreenIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QPdfPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTuioTouchPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QVirtualKeyboardPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebGLIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QXdgDesktopPortalThemePlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin.cmake;%(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\generate.stamp + false + Building Custom Rule A:/workspace/special-broccoli/app/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -SA:/workspace/special-broccoli/app -BA:/workspace/special-broccoli/build --check-stamp-file A:/workspace/special-broccoli/build/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeCXXCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeRCCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-Initialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\WindowsPaths.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5Config.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ModuleLocation.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtrasMkspecDir.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QMinimalIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QOffscreenIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QPdfPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTuioTouchPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QVirtualKeyboardPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebGLIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QXdgDesktopPortalThemePlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin.cmake;%(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\generate.stamp + false + Building Custom Rule A:/workspace/special-broccoli/app/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -SA:/workspace/special-broccoli/app -BA:/workspace/special-broccoli/build --check-stamp-file A:/workspace/special-broccoli/build/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeCXXCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeRCCompiler.cmake;A:\workspace\special-broccoli\build\CMakeFiles\3.27.4\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Compiler\MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-Initialize.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.27\Modules\Platform\WindowsPaths.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5Config.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5\Qt5ModuleLocation.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigExtrasMkspecDir.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Core\Qt5CoreMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5GuiConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QMinimalIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QOffscreenIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QPdfPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QTuioTouchPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QVirtualKeyboardPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebGLIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Gui\Qt5Gui_QXdgDesktopPortalThemePlugin.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5LinguistTools\Qt5LinguistToolsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfig.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigExtras.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsConfigVersion.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5WidgetsMacros.cmake;C:\Users\beo.MSI\anaconda3\Library\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin.cmake;%(AdditionalInputs) + A:\workspace\special-broccoli\build\CMakeFiles\generate.stamp + false + + + + + true + true + true + + + + + + + + true + true + true + + + true + true + true + + + true + true + true + + + + + {9D9A0227-F5F0-3F8B-A236-3786B5465D74} + ZERO_CHECK + false + Never + + + + + + \ No newline at end of file diff --git a/build/app.vcxproj.filters b/build/app.vcxproj.filters new file mode 100644 index 0000000..644a53a --- /dev/null +++ b/build/app.vcxproj.filters @@ -0,0 +1,48 @@ + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + + + CMake Rules + + + + + + + + + {9F01B20B-232A-323D-A5DE-536E9C2154FF} + + + {CE3BFC51-3748-3002-8193-EB96713ECA68} + + + {A6F5A126-605D-30EC-892D-0BD06F489923} + + + diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..14b10d3 --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,56 @@ +# Install script for directory: A:/workspace/special-broccoli/app + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/app") +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 "Release") + 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 STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "A:/workspace/special-broccoli/build/Debug/app.exe") + elseif(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Rr][Ee][Ll][Ee][Aa][Ss][Ee])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "A:/workspace/special-broccoli/build/Release/app.exe") + elseif(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Mm][Ii][Nn][Ss][Ii][Zz][Ee][Rr][Ee][Ll])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "A:/workspace/special-broccoli/build/MinSizeRel/app.exe") + elseif(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Rr][Ee][Ll][Ww][Ii][Tt][Hh][Dd][Ee][Bb][Ii][Nn][Ff][Oo])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "A:/workspace/special-broccoli/build/RelWithDebInfo/app.exe") + 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 "A:/workspace/special-broccoli/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/championnats.cpp b/championnats.cpp new file mode 100644 index 0000000..f95a2b6 --- /dev/null +++ b/championnats.cpp @@ -0,0 +1,88 @@ +#include "championnats.h" +#include +#include + +using namespace std; + +// Constructor +Championnat::Championnat(const string& nom, int annee, int nbTours) + : nom(nom), annee(annee), nbTours(nbTours) {} + +// Method to add players to the tournament +void Championnat::inscrireJoueur(const Joueur& joueur) { + joueursInscrits.push_back(joueur); +} + +// Method to get the list of enrolled players +const vector& Championnat::getJoueursInscrits() const { + return joueursInscrits; +} + +// Constructor for ChampionnatSimple +ChampionnatSimple::ChampionnatSimple(const string& nom, int annee, int nbTours) + : Championnat(nom, annee, nbTours) {} + +// Method to add players to the tournament +void ChampionnatSimple::ajouterJoueur(const Joueur& joueur) { + joueurs.push_back(joueur); +} + +// Method to remove players from the tournament +void ChampionnatSimple::supprimerJoueur(const string& nom) { + for (int i = 0; i < joueurs.size(); i++) { + if (joueurs[i].nom == nom) { + joueurs.erase(joueurs.begin() + i); + break; + } + } +} + +// Method to add matches to the tournament +void ChampionnatSimple::ajouterPartie(const Partie& partie) { + parties.push_back(partie); +} + +// Method to remove matches from the tournament +void ChampionnatSimple::supprimerPartie(int numero) { + for (int i = 0; i < parties.size(); i++) { + if (parties[i].numero == numero) { + parties.erase(parties.begin() + i); + break; + } + } +} + +// Method to add tickets to the tournament +void ChampionnatSimple::ajouterTicket(const Ticket& ticket) { + tickets.push_back(ticket); +} + +// Method to remove tickets from the tournament +void ChampionnatSimple::supprimerTicket(int numero) { + for (int i = 0; i < tickets.size(); i++) { + if (tickets[i].numeroTicket == numero) { + tickets.erase(tickets.begin() + i); + break; + } + } +} + +// Method to display the tournament information +void ChampionnatSimple::afficherChampionnat() { + cout << "Championnat: " << nom << endl; + cout << "Annee: " << annee << endl; + cout << "Joueurs: " << endl; + for (Joueur joueur : joueurs) { + cout << "Name: " << joueur.getNom() << endl; + cout << "Ranking: " << joueur.getClassement() << endl; + cout << "Wins: " << joueur.nbVictoires << endl; + cout << "Losses: " << joueur.nbDefaites << endl; + } + for (Partie partie : parties) { + partie.afficher(); + } + cout << "Tickets: " << endl; + for (Ticket ticket : tickets) { + ticket.afficher(); + } +} \ No newline at end of file diff --git a/championnats.h b/championnats.h deleted file mode 100644 index ef23eb7..0000000 --- a/championnats.h +++ /dev/null @@ -1,112 +0,0 @@ -#ifndef CHAMPIONNATS_H -#define CHAMPIONNATS_H - -#include -#include -#include "parties.h" -#include "tickets.h" -#include "joueurs.h" -#include "scores.h" - -using namespace std; - -class Championnat { -public: - Championnat() {} // Default constructor - - std::string nom; // Tournament name - int annee; // Tournament year - int nbTours; // Number of rounds in the tournament (e.g., 4 for quarterfinals) - std::vector joueursInscrits; // Enrolled players - std::vector parties; // Played matches - std::vector tickets; // Tickets sold - - // Constructor - Championnat(const std::string& nom, int annee, int nbTours) : nom(nom), annee(annee), nbTours(nbTours) {} - - - // Method to add players to the tournament - void inscrireJoueur(const Joueur& joueur) { - joueursInscrits.push_back(joueur); - } - - // Method to get the list of enrolled players - const std::vector& getJoueursInscrits() const { - return joueursInscrits; - } -}; - -class ChampionnatSimple : public Championnat { -public: - std::vector joueurs; // Players in the tournament - - // Constructor - ChampionnatSimple(const std::string& nom, int annee, int nbTours) : Championnat(nom, annee, nbTours) {} - - // Method to add players to the tournament - void ajouterJoueur(const Joueur& joueur) { - joueurs.push_back(joueur); - } - - // Method to remove players from the tournament - void supprimerJoueur(const std::string& nom) { - for (int i = 0; i < joueurs.size(); i++) { - if (joueurs[i].nom == nom) { - joueurs.erase(joueurs.begin() + i); - break; - } - } - } - - // Method to add matches to the tournament - void ajouterPartie(const Partie& partie) { - parties.push_back(partie); - } - - // Method to remove matches from the tournament - void supprimerPartie(int numero) { - for (int i = 0; i < parties.size(); i++) { - if (parties[i].numero == numero) { - parties.erase(parties.begin() + i); - break; - } - } - } - - // Method to add tickets to the tournament - void ajouterTicket(const Ticket& ticket) { - tickets.push_back(ticket); - } - - // Method to remove tickets from the tournament - void supprimerTicket(int numero) { - for (int i = 0; i < tickets.size(); i++) { - if (tickets[i].numero == numero) { - tickets.erase(tickets.begin() + i); - break; - } - } - } - - // Method to display the tournament information - void afficherChampionnat() { - cout << "Championnat: " << nom << endl; - cout << "Annee: " << annee << endl; - cout << "Joueurs: " << endl; - for (Joueur joueur : joueurs) { - cout << "Name: " << joueur.getNom() << endl; - cout << "Ranking: " << joueur.getClassement() << endl; - cout << "Wins: " << joueur.nbVictoires << endl; - cout << "Losses: " << joueur.nbDefaites << endl; - } - for (Partie partie : parties) { - partie.afficher(); - } - cout << "Tickets: " << endl; - for (Ticket ticket : tickets) { - ticket.afficher(); - } - } -}; - -#endif diff --git a/clients.h b/clients.h deleted file mode 100644 index 55257d6..0000000 --- a/clients.h +++ /dev/null @@ -1,61 +0,0 @@ -#ifndef CLIENTS_H -#define CLIENTS_H - -#include -#include -#include - -class Client { -public: - Client(std::string nom, int numero) : nom(nom), numero(numero) {} // Member initialization list - - std::string getNom() const { return nom; } - int getNumero() const { return numero; } - - void setNom(const std::string& nom) { this->nom = nom; } - void setNumero(int numero) { this->numero = numero; } - -private: - std::string nom; - int numero; -}; - -class GestionClients { -public: - void ajouterClient(const Client& client) { - clients.push_back(client); - } - - void supprimerClient(const std::string& nom) { - auto it = std::find_if(clients.begin(), clients.end(), - [&nom](const Client& client) { - return client.getNom() == nom; - }); - if (it != clients.end()) { - clients.erase(it); - } - } - - Client* rechercherClient(const std::string& nom) const { - for (const Client& client : clients) { - if (client.getNom().find(nom) != std::string::npos) { - return const_cast(&client); // Remove const to return a Client* - } - } - return nullptr; - } - - const std::vector& getClients() const { return clients; } - - void trierClientsParNom() { - std::sort(clients.begin(), clients.end(), - [](const Client& a, const Client& b) { - return a.getNom() < b.getNom(); - }); - } - -private: - std::vector clients; -}; - -#endif // CLIENTS_H \ No newline at end of file diff --git a/joueurs.h b/joueurs.h deleted file mode 100644 index 9e2b951..0000000 --- a/joueurs.h +++ /dev/null @@ -1,118 +0,0 @@ -#ifndef JOUEURS_H -#define JOUEURS_H - -#include -#include -#include -#include "personne.h" -#include "scores.h" - -using namespace std; - -class Joueur { -public: - Joueur(){} - std::string nom; - int classement; - int nbVictoires; - int nbDefaites; - - Joueur(string nom, int classement) { - this->nom = nom; - this->classement = classement; - this->nbVictoires = 0; - this->nbDefaites = 0; - } - Joueur(std::string nom) : nom(nom), classement(0), nbVictoires(0), nbDefaites(0) {} - - string Joueur::getNom() const { return nom; } - - int Joueur::getClassement() const { return classement; } - - void Joueur::setNom(string nom) { this->nom = nom; } - - void Joueur::setClassement(int classement) { this->classement = classement; } - - void incrementerVictoire() { nbVictoires++; } - - void incrementerDefaite() { nbDefaites++; } - - bool operator==(const Joueur& other) const { return nom == other.nom; } -}; - -class GestionJoueurs { -public: - vector joueurs; - GestionJoueurs() {} - void afficherJoueurs() { - if (joueurs.empty()) { - cout << "No players found." << endl; - return; - } - - for (Joueur joueur : joueurs) { - cout << "Name: " << joueur.getNom() << endl; - cout << "Ranking: " << joueur.getClassement() << endl; - cout << "Wins: " << joueur.nbVictoires << endl; - cout << "Losses: " << joueur.nbDefaites << endl; - - cout << endl; - } - } - - - void ajouterJoueur(const Joueur& joueur) { - if (joueur.nom.empty()) { - throw std::invalid_argument("Player name cannot be empty."); - } - - for (Joueur& j : joueurs) { - if (j.nom == joueur.nom) { - throw std::invalid_argument("Player already exists."); - } - } - joueurs.push_back(joueur); - } - - void supprimerJoueur(const std::string& nom) { - for (int i = 0; i < joueurs.size(); i++) { - if (joueurs[i].nom == nom) { - joueurs.erase(joueurs.begin() + i); - break; - } - } - } - // In GestionJoueurs class - -void rechercherJoueur(const std::string& searchTerm) const { - auto it = std::find_if(joueurs.begin(), joueurs.end(), - [&searchTerm](const Joueur& joueur) { - return joueur.getNom().find(searchTerm) != std::string::npos; - }); - if (it != joueurs.end()) { - std::cout << "Player found:" << std::endl; - std::cout << "Nom: " << it->nom << std::endl; // Access member directly - std::cout << "Classement: " << it->classement << std::endl; - } else { - std::cout << "Player not found." << std::endl; - } -} - - - void trierJoueursParClassement() { - std::sort(joueurs.begin(), joueurs.end(), [](Joueur joueur1, Joueur joueur2) { - return joueur1.classement > joueur2.classement; - }); - } - void modifierJoueur(Joueur& joueur) { - for (int i = 0; i < joueurs.size(); i++) { - if (joueurs[i].nom == joueur.nom) { - joueurs[i].nom = joueur.nom; - joueurs[i].classement = joueur.classement; - break; - } - } - } -}; - -#endif diff --git a/main.cpp b/main.cpp index 37714f3..ef8a65b 100644 --- a/main.cpp +++ b/main.cpp @@ -1,498 +1,75 @@ +#include "Joueur.h" +#include "Partie.h" +#include "Reservation.h" +#include "Scoreboard.h" +#include "Paiements.h" +#include "DataManager.h" +#include "TournamentRanking.h" +#include "DataManager.h" +#include "GestionClients.h" +#include "GestionReservations.h" +#include "GestionJoueurs.h" +#include "GestionParties.h" +#include "GestionTickets.h" +#include "GestionScores.h" +#include "PlanificationParties.h" +#include "Championnat.h" +#include "Ticket.h" +#include "MatchSchedule.h" +#include "MatchBase.h" +#include "Terrain.h" +#include "MatchResult.h" +#include "PlanificationPlaces.h" + #include -#include #include -#include // For handling invalid input +#include +#include +#include +#include +#include +#include +#include +#include +#include -#include "paiements.h" -#include "scores.h" -#include "reservations.h" -#include "places.h" -#include "personne.h" -#include "joueurs.h" -#include "championnats.h" -#include "parties.h" -#include "tickets.h" -#include "clients.h" -#include using namespace std; -void clearScreen() { - system("cls"); // For Windows -} - - -// Function to display the main menu options -void displayMainMenu() { - clearScreen(); // Clear the screen for a clean menu display - cout << "Tennis Championship Application" << endl; - cout << "------------------------------" << endl; - cout << "1. Manage Players" << endl; - cout << "2. Manage Championships" << endl; - cout << "3. Manage Matches" << endl; - cout << "4. Manage Tickets" << endl; - cout << "5. Manage Clients" << endl; - cout << "------------------------------" << endl; - cout << "6. Manage Payments" << endl; - cout << "7. Manage Scores" << endl; - cout << "8. Manage Reservations" << endl; - cout << "9. Manage Places" << endl; - cout << "------------------------------" << endl; - cout << "0. Exit" << endl; - cout << "Enter your choice: "; -} - -// Function to get the user's menu choice with input validation -int getUserChoice() { - int choice; - while (!(cin >> choice) || choice < 0 || choice > 9) { - cout << "Invalid input. Please enter a number between 0 and 5: "; - cin.clear(); // Clear the error flag - cin.ignore(numeric_limits::max(), '\n'); // Discard remaining input - } - return choice; -} - - -// Function to display the player management menu -void displayJoueursMenu(GestionJoueurs& gestionJoueurs) { - clearScreen(); - cout << "Player Management Menu" << endl; - cout << "---------------------" << endl; - cout << "1. Add a player" << endl; - cout << "2. Remove a player" << endl; - cout << "3. Update a player's information" << endl; - cout << "4. Search for a player" << endl; - cout << "5. Display all players" << endl; - cout << "6. Exit" << endl; - cout << "Enter your choice: "; - int choice = getUserChoice(); - - switch (choice) { - case 1: { // Add player - std::string nom; - int classement; - std::cout << "Enter player name: "; - std::cin >> nom; - std::cout << "Enter player ranking: "; - std::cin >> classement; - // Input validation (example) - if (classement < 1 || classement > 100) { - std::cout << "Invalid ranking. Ranking must be between 1 and 100." << std::endl; - break; - } - Joueur joueur(nom, classement); // Create Joueur object - gestionJoueurs.ajouterJoueur(joueur); // Add player - std::cout << "Player added successfully." << std::endl; - break; - } - case 2: { // Remove player - std::string nom; - std::cout << "Enter player name: "; - std::cin >> nom; - gestionJoueurs.supprimerJoueur(nom); // Remove player - std::cout << "Player removed successfully." << std::endl; - break; - } - case 3: { // Update player's information - std::string nom; - std::cout << "Enter player name: "; - std::cin >> nom; - Joueur joueur = gestionJoueurs.rechercherJoueur(nom); // Find player - if (joueur.getNom() == "") { - std::cout << "Player not found." << std::endl; - break; - } - std::cout << "Enter new player name: "; - std::cin >>nom; joueur.setNom(nom); - std::cout << "Enter new player ranking: "; - std::cin >> joueur.setClassement(); - gestionJoueurs.modifierJoueur(joueur); // Update player - std::cout << "Player updated successfully." << std::endl; - break; - } - case 4: { // Search for a player - std::string nom; - std::cout << "Enter player name: "; - std::cin >> nom; - Joueur joueur = gestionJoueurs.rechercherJoueur(nom); // Find player - if (joueur.getNom() == "") { - std::cout << "Player not found." << std::endl; - break; - } - std::cout << "Player found:" << std::endl; - std::cout << "Name: " << joueur.getNom() << std::endl; - std::cout << "Ranking: " << joueur.getClassement() << std::endl; - break; - } - case 5: { // Display all players - std::vector joueurs = gestionJoueurs.obtenirJoueurs(); // Get all players - if (joueurs.empty()) { - std::cout << "No players found." << std::endl; - break; - } - std::cout << "Players:" << std::endl; - for (Joueur joueur : joueurs) { - std::cout << "Name: " << joueur.getNom() << std::endl; - std::cout << "Ranking: " << joueur.getClassement() << std::endl; - } - break; - } - - case 6: // exit - - break; - default: - std::cout << "Invalid choice. Please try again." << std::endl; - } -} - -void displayChampionnatsMenu() { - clearScreen(); - cout << "Championship Management Menu" << endl; - cout << "---------------------" << endl; - cout << "1. Add a championship" << endl; - cout << "2. Remove a championship" << endl; - cout << "3. Update a championship's information" << endl; - cout << "4. Search for a championship" << endl; - cout << "5. Display all championships" << endl; - cout << "6. Exit" << endl; - cout << "Enter your choice: "; - int choice = getUserChoice(); - switch (choice) { - case 1: { // Add a championship - std::string nom; - std::cout << "Enter championship name: "; - std::cin >> nom; - gestionChampionnats.ajouterChampionnat(nom); // Add championship - std::cout << "Championship added successfully." << std::endl; - break; - } - case 2: { // Remove a championship - std::string nom; - std::cout << "Enter championship name: "; - std::cin >> nom; - gestionChampionnats.supprimerChampionnat(nom); // Remove championship - std::cout << "Championship removed successfully." << std::endl; - break; - } - case 3: { // Update a championship's information - std::string nom; - std::cout << "Enter championship name: "; - std::cin >> nom; - Championnat championnat = gestionChampionnats.rechercherChampionnat(nom); // Find championship - if (championnat.getNom() == "") { - std::cout << "Championship not found." << std::endl; - break; - } - std::cout << "Enter new championship name: "; - std::cin >> championnat.setNom(); - gestionChampionnats.modifierChampionnat(championnat); // Update championship - std::cout << "Championship updated successfully." << std::endl; - break; - } - case 4: { // Search for a championship - std::string nom; - std::cout << "Enter championship name: "; - std::cin >> nom; - Championnat championnat = gestionChampionnats.rechercherChampionnat(nom); // Find championship - if (championnat.getNom() == "") { - std::cout << "Championship not found." << std::endl; - break; - } - std::cout << "Championship found:" << std::endl; - std::cout << "Name: " << championnat.getNom() << std::endl; - break; - } - case 5: { // Display all championships - std::vector championnats = gestionChampionnats.obtenirChampionnats(); // Get all championships - if (championnats.empty()) { - std::cout << "No championships found." << std::endl; - break; - } - std::cout << "Championships:" << std::endl; - for (Championnat championnat : championnats) { - std::cout << "Name: " << championnat.getNom() << std::endl; - } - break; - } - case 6: // exit - break; - default: - std::cout << "Invalid choice. Please try again." << std::endl; - } -} - -void displayPartiesMenu() { - clearScreen(); - cout << "Match Management Menu" << endl; - cout << "---------------------" << endl; - cout << "1. Add a match" << endl; - cout << "2. Remove a match" << endl; - cout << "3. Update a match's information" << endl; - cout << "4. Search for a match" << endl; - cout << "5. Display all matches" << endl; - cout << "6. Exit" << endl; - cout << "Enter your choice: "; - int choice = getUserChoice(); - switch (choice) { - case 1: { // Add a match - std::string nom; - std::cout << "Enter match name: "; - std::cin >> nom; - gestionParties.ajouterMatch(nom); // Add match - std::cout << "Match added successfully." << std::endl; - break; - } - case 2: { // Remove a match - std::string nom; - std::cout << "Enter match name: "; - std::cin >> nom; - gestionParties.supprimerMatch(nom); // Remove match - std::cout << "Match removed successfully." << std::endl; - break; - } - case 3: { // Update a match's information - std::string nom; - std::cout << "Enter match name: "; - std::cin >> nom; - Match match = gestionParties.rechercherMatch(nom); // Find match - if (match.getNom() == "") { - std::cout << "Match not found." << std::endl; - break; - } - std::cout << "Enter new match name: "; - std::cin >> match.setNom(); - gestionParties.modifierMatch(match); // Update match - std::cout << "Match updated successfully." << std::endl; - break; - } - case 4: { // Search for a match - std::string nom; - std::cout << "Enter match name: "; - std::cin >> nom; - Match match = gestionParties.rechercherMatch(nom); // Find match - if (match.getNom() == "") { - std::cout << "Match not found." << std::endl; - break; - } - std::cout << "Match found:" << std::endl; - std::cout << "Name: " << match.getNom() << std::endl; - break; - } - case 5: { // Display all matches - std::vector matches = gestionParties.obtenirMatches(); // Get all matches - if (matches.empty()) { - std::cout << "No matches found." << std::endl; - break; - } - std::cout << "Matches:" << std::endl; - for (Match match : matches) { - std::cout << "Name: " << match.getNom() << std::endl; - case 6: // exit - break; - default: - std::cout << "Invalid choice. Please try again." << std::endl; - } -} - -void displayTicketsMenu() { - clearScreen(); - cout << "Ticket Management Menu" << endl; - cout << "---------------------" << endl; - cout << "1. Add a ticket" << endl; - cout << "2. Remove a ticket" << endl; - cout << "3. Update a ticket's information" << endl; - cout << "4. Search for a ticket" << endl; - cout << "5. Display all tickets" << endl; - cout << "6. Exit" << endl; - cout << "Enter your choice: "; - int choice = getUserChoice(); - switch (choice) { - case 1: { // Add a ticket - std::string nom; - std::cout << "Enter ticket name: "; - std::cin >> nom; - gestionTickets.ajouterTicket(nom); // Add ticket - std::cout << "Ticket added successfully." << std::endl; - break; - } - case 2: { // Remove a ticket - std::string nom; - std::cout << "Enter ticket name: "; - std::cin >> nom; - gestionTickets.supprimerTicket(nom); // Remove ticket - std::cout << "Ticket removed successfully." << std::endl; - break; - } - case 3: { // Update a ticket's information - std::string nom; - std::cout << "Enter ticket name: "; - std::cin >> nom; - Ticket ticket = gestionTickets.rechercherTicket(nom); // Find ticket - if (ticket.getNom() == "") { - std::cout << "Ticket not found." << std::endl; - break; - } - std::cout << "Enter new ticket name: "; - std::cin >> ticket.setNom(); - gestionTickets.modifierTicket(ticket); // Update ticket - std::cout << "Ticket updated successfully." << std::endl; - break; - } - case 4: { // Search for a ticket - std::string nom; - std::cout << "Enter ticket name: "; - std::cin >> nom; - Ticket ticket = gestionTickets.rechercherTicket(nom); // Find ticket - if (ticket.getNom() == "") { - std::cout << "Ticket not found." << std::endl; - break; - } - std::cout << "Ticket found:" << std::endl; - std::cout << "Name: " << ticket.getNom() << std::endl; - break; - } - case 5: { // Display all tickets - std::vector tickets = gestionTickets.obtenirTickets(); // Get all tickets - if (tickets.empty()) { - std::cout << "No tickets found." << std::endl; - break; - } - std::cout << "Tickets:" << std::endl; - for (Ticket ticket : tickets) { - std::cout << "Name: " << ticket.getNom() << std::endl; - std::cout << std::endl; - } - break; - case 6: // exit - break; - default: - std::cout << "Invalid choice. Please try again." << std::endl; - } -} - -void displayClientsMenu() { - clearScreen(); - cout << "Client Management Menu" << endl; - cout << "---------------------" << endl; - cout << "1. Add a client" << endl; - cout << "2. Remove a client" << endl; - cout << "3. Update a client's information" << endl; - cout << "4. Search for a client" << endl; - cout << "5. Display all clients" << endl; - cout << "6. Exit" << endl; - cout << "Enter your choice: "; - int choice = getUserChoice(); - switch (choice) { - case 1: { // Add a client - std::string nom; - std::cout << "Enter client name: "; - std::cin >> nom; - gestionClients.ajouterClient(nom); // Add client - std::cout << "Client added successfully." << std::endl; - break; - } - case 2: { // Remove a client - std::string nom; - std::cout << "Enter client name: "; - std::cin >> nom; - gestionClients.supprimerClient(nom); // Remove client - std::cout << "Client removed successfully." << std::endl; - break; - } - case 3: { // Update a client's information - std::string nom; - std::cout << "Enter client name: "; - std::cin >> nom; - Client client = gestionClients.rechercherClient(nom); // Find client - if (client.getNom() == "") { - std::cout << "Client not found." << std::endl; - break; - } - std::cout << "Enter new client name: "; - std::cin >> client.setNom(); - gestionClients.modifierClient(client); // Update client - std::cout << "Client updated successfully." << std::endl; - break; - } - case 4: { // Search for a client - std::string nom; - std::cout << "Enter client name: "; - std::cin >> nom; - Client client = gestionClients.rechercherClient(nom); // Find client - if (client.getNom() == "") { - std::cout << "Client not found." << std::endl; - break; - } - std::cout << "Client found:" << std::endl; - std::cout << "Name: " << client.getNom() << std::endl; - break; - } - case 5: { // Display all clients - std::vector clients = gestionClients.obtenirClients(); // Get all clients - if (clients.empty()) { - std::cout << "No clients found." << std::endl; - break; - } - std::cout << "Clients:" << std::endl; - for (Client client : clients) { - std::cout << "Name: " << client.getNom() << std::endl; - std::cout << std::endl; - } - break; - case 6: // exit - break; - default: - std::cout << "Invalid choice. Please try again." << std::endl; - } -} - - - int main() { - - - GestionTickets gestionTickets; - GestionClients gestionClients; - GestionScores gestionScores; - GestionReservations gestionReservations; - GestionParties gestionParties; - GestionJoueurs gestionJoueurs; - - // Main menu loop - - int choice; - do { - displayMainMenu(); - choice = getUserChoice(); - - switch (choice) { - case 1: - displayJoueursMenu(); - - break; - case 2: - displayChampionnatsMenu(); - break; - case 3: - displayPartiesMenu(); - - break; - case 4: - displayTicketsMenu(); - break; - case 5: - displayClientsMenu(); - break; - case 0: - cout << "Exiting the application. Goodbye!" << endl; - break; - default: - cout << "Invalid choice. Please try again." << endl; - } - } while (choice != 0); - - return 0; -} \ No newline at end of file + DataManager dataManager; + TournamentRanking ranking; + Paiements paiements; + + std::vector joueurs; + std::vector parties; + std::vector reservations; + Scoreboard scoreboard; + + // Load data + dataManager.chargerJoueurs("joueurs.dat", joueurs); + dataManager.chargerParties("parties.dat", parties); + dataManager.chargerReservations("reservations.dat", reservations); + dataManager.chargerScores("scores.dat", scoreboard); + paiements.chargerPaiements("paiements.dat"); + + // Example usage + ranking.ajouterMatch("Joueur1", "Joueur2", 3, 1); + ranking.afficherClassement(); + + Paiement newPaiement("Client1", 50.0, "2024-05-19"); + paiements.ajouterPaiement(newPaiement); + paiements.afficherPaiements(); + + // Save data + dataManager.sauvegarderJoueurs("joueurs.dat", joueurs); + dataManager.sauvegarderParties("parties.dat", parties); + dataManager.sauvegarderReservations("reservations.dat", reservations); + dataManager.sauvegarderScores("scores.dat", scoreboard); + paiements.sauvegarderPaiements("paiements.dat"); + + + + return 0; +} diff --git a/menu.cpp b/menu.cpp deleted file mode 100644 index 3823d8d..0000000 --- a/menu.cpp +++ /dev/null @@ -1,355 +0,0 @@ -#include -#include -#include "joueurs.h" -#include "terrains.h" -#include "parties.h" -#include "reservations.h" -#include "menu.h" -#include "championnats.h" -#include "tickets.h" -#include "scores.h" - -vector joueurs; -vector terrains; -vector parties; -vector reservations; - -using namespace std; -GestionParties gestionParties; -Championnat championnat; -Joueur joueur; -class Menu { -public: - Menu(const vector& options) : options(options) {} - - void display() { - for (int i = 0; i < options.size(); i++) { - cout << i + 1 << ". " << options[i] << endl; - } - cout << "Choix: "; - } - - int getSelection() { - int selection; - cin >> selection; - return selection; - } - -private: - vector options; -}; - -void displayJoueursMenu() { - // Create the joueurs menu - vector joueursMenuOptions = {"Afficher la liste des joueurs", "Rechercher un joueur", "Modifier un joueur", "Supprimer un joueur","Trier les joueurs par classement","Retour au menu principal"}; - Menu joueursMenu(joueursMenuOptions); - - // Display the joueurs menu - joueursMenu.display(); - - // Get the user's selection - int selection = joueursMenu.getSelection(); - - // Handle the user's selection - switch (selection) { - case 1: - void afficherJoueurs(); - break; - case 2: - void rechercherJoueur(); - break; - case 3: - void modifierJoueur(); - break; - case 4: - void supprimerJoueur(); - break; - case 5: - void trierJoueursParClassement(); - break; - case 6: - displayJoueursMenu(); - break; - case 7: - exit(0); // Quitter le programme - break; - default: - cout << "Choix invalide" << endl; - break; - } -} - -void displayTerrainsMenu() { - // Create the terrains menu - vector terrainsMenuOptions = {"Afficher la liste des terrains", "Rechercher un terrain", "Modifier un terrain", "Supprimer un terrain", "Retour au menu principal"}; - Menu terrainsMenu(terrainsMenuOptions); - - // Display the terrains menu - terrainsMenu.display(); - - // Get the user's selection - int selection = terrainsMenu.getSelection(); - - // Handle the user's selection - switch (selection) { - case 1: - void afficherTerrains(); - break; - case 2: - void rechercherTerrain(); - break; - case 3: - void modifierTerrain(); - break; - case 4: - void supprimerTerrain(); - break; - case 5: - displayTerrainsMenu(); - break; - case 6: - exit(0); // Quitter le programme - break; - default: - cout << "Choix invalide" << endl; - break; - } -} - -void displayPartiesMenu() { - // Create the parties menu - vector partiesMenuOptions = { - "Afficher la liste des parties", - "Rechercher une partie", - "Saisir le résultat d'une partie", // Replace 'Modifier une partie' - "Supprimer une partie", - "Gestion des championnats", - "Retour au menu principal"}; - Menu partiesMenu(partiesMenuOptions); - - // Display the parties menu - partiesMenu.display(); - - // Get the user's selection - int selection = partiesMenu.getSelection(); - - // Handle the user's selection - switch (selection) { - case 1: - GestionParties.afficherParties(); - break; - case 2: - // ... (Implement search functionality) - break; - case 3: // Saisir le résultat d'une partie - { - cout << "Enter Player 1 Name: "; - string nomJoueur1; - cin >> nomJoueur1; - - cout << "Enter Player 2 Name: "; - string nomJoueur2; - cin >> nomJoueur2; - - Partie partie = retrievePartie(nomJoueur1, nomJoueur2); - - // Get match results - cout << "Enter result for Player 1 (0 - Match Nul, 1 - Victoire, 2 - Defaite): "; - int resultPlayer1; - cin >> resultPlayer1; - - // ... Similar input for Player 2 - - setResultatPartie(partie, partie.getNomJoueur1(), (ResultatPartie)resultPlayer1); - setResultatPartie(partie, partie.getNomJoueur2(), (ResultatPartie)resultPlayer2); - cout << "Match results updated!" << endl; - } - break; - - case 4: - // ... (Implement supprimerPartie using GestionParties) - break; - // ... other cases - } -} - -void displayChampionnatsMenu() { - // Create the championnats menu - vector championnatsMenuOptions = {"Afficher la liste des championnats", "Rechercher un championnat", "Modifier un championnat", "Supprimer un championnat", "Retour au menu des parties"}; - Menu championnatsMenu(championnatsMenuOptions); - - // Display the championnats menu - championnatsMenu.display(); - - // Get the user's selection - int selection = championnatsMenu.getSelection(); - - // Handle the user's selection - switch (selection) { - case 1: - void afficherChampionnats(); - break; - case 2: - void rechercherChampionnat(); - break; - case 3: - void modifierChampionnat(); - break; - case 4: - void supprimerChampionnat(); - break; - case 5: - // Retour au menu des parties - displayPartiesMenu(); - break; - // Inside your menu loop (modify the menu structure as needed) -case 5: // Update Scores - // Get player names or match ID to identify the partie - Partie partie = retrievePartie(nomJoueur1, nomJoueur2); // Using the function we created - // Get match results - GestionScores.updateScore(partie.getNomJoueur1(), calculateScore(partie)); - GestionScores.updateScore(partie.getNomJoueur2(), calculateScore(partie)); - cout << "Scores updated!" << endl; - break; - -case 6: // Display Top Scorers - vector topScores = GestionScores.getTopScorers(3); // Get top 3 - for (Score score : topScores) { - score.afficher(); - } - break; - - default: - cout << "Choix invalide" << endl; - break; - } -} -void displayReservationsMenu() { - // Create the reservations menu - vector reservationsMenuOptions = {"Afficher la liste des réservations", "Rechercher une réservation", "Modifier une réservation", "Supprimer une réservation", "Retour au menu principal"}; - Menu reservationsMenu(reservationsMenuOptions); - - // Display the reservations menu - reservationsMenu.display(); - - // Get the user's selection - int selection = reservationsMenu.getSelection(); - - // Handle the user's selection - switch (selection) { - case 1: - // Afficher la liste des réservations - break; - case 2: - // Rechercher une réservation - break; - case 3: - // Modifier une réservation - break; - case 4: - // Supprimer une réservation - break; - case 5: - // Retour au menu principal - break; - default: - cout << "Choix invalide" << endl; - break; - } -} -void displayMatchManagementMenu() { - vector matchMenuOptions = { - "Update Scores", - "Display Match Details", - // ... more match options ... - "Return to Main Menu" - }; - Menu matchMenu(matchMenuOptions); - // ... (Handle menu display and input similar to your main menu loop) -} -void displayScoreManagementMenu() { - // Create the score management menu - vector scoreMenuOptions = {"Afficher la liste des scores", "Rechercher un score", "Modifier un score", "Supprimer un score", "Retour au menu principal"}; - Menu scoreMenu(scoreMenuOptions); - - // Display the score management menu - scoreMenu.display(); - - // Get the user's selection - int selection = scoreMenu.getSelection(); - - // Handle the user's selection - switch (selection) { - case 1: - // Afficher la liste des scores des scores - break; - case 2: - // Rechercher un score - break; - case 3: - // Modifier un score - break; - case 4: - // Supprimer un score score - break; - case 5: - // Retour au menu principal - break; - default: - cout << "Choix invalide" << endl; - break; - } -}; -int main() { - // Create the main menu - vector mainMenuOptions = {"Gestion des joueurs", "Gestion des terrains", "Gestion des parties", "Gestion des réservations", "Gestion des matches", - "Gestion des scores","Quitter"}; - Menu mainMenu(mainMenuOptions); - - // Main loop - int selection; - do { - // Display the main menu - mainMenu.display(); - - // Get the user's selection - selection = mainMenu.getSelection(); - - // Handle the user's selection - switch (selection) { - case 1: - // Display the joueurs menu - displayJoueursMenu(); - break; - case 2: - // Display the terrains menu - displayTerrainsMenu(); - break; - case 3: - // Display the parties menu - displayPartiesMenu(); - break; - case 4: - // Display the reservations menu - displayReservationsMenu(); - break; - - case 5: - // Display the matches menu - displayMatchesMenu(); - break; - case 6: - // Display the scores menu - displayScoresMenu(); - break; - case 7: - exit (0); // Quitter le programme - break; - default: - cout << "Choix invalide" << endl; - break; - } - } while (selection != 7); - - return 0; -} diff --git a/paiements.h b/paiements.h index c241129..5a69764 100644 --- a/paiements.h +++ b/paiements.h @@ -1,45 +1,38 @@ #ifndef PAIEMENTS_H #define PAIEMENTS_H -#include #include - -using namespace std; +#include +#include +#include +#include class Paiement { public: - enum MethodePaiement { - CARTE_BANCAIRE, - ESPECES, - CHEQUE - }; + Paiement(const std::string &clientName, double amount, const std::string &date); + + std::string getClientName() const; + double getAmount() const; + std::string getDate() const; - MethodePaiement methode; - double montant; + std::string toString() const; + static Paiement fromString(const std::string &data); + +private: + std::string clientName; + double amount; + std::string date; +}; +class Paiements { public: -Paiement(){} - Paiement(MethodePaiement methode, double montant) { - this->methode = methode; - this->montant = montant; - } + void ajouterPaiement(const Paiement &paiement); + void afficherPaiements() const; + void sauvegarderPaiements(const std::string &filename) const; + void chargerPaiements(const std::string &filename); - void afficher() const { - cout << "Méthode de paiement: "; - switch (methode) { - case CARTE_BANCAIRE: - cout << "Carte bancaire"; - break; - case ESPECES: - cout << "Espèces"; - break; - case CHEQUE: - cout << "Chèque"; - break; - } - cout << endl; - cout << "Montant: " << montant << endl; - } +private: + std::vector paiements; }; -#endif \ No newline at end of file +#endif // PAIEMENTS_H diff --git a/parties.h b/parties.h deleted file mode 100644 index f78d829..0000000 --- a/parties.h +++ /dev/null @@ -1,284 +0,0 @@ -#ifndef PARTIES_H -#define PARTIES_H - -#include -#include -#include -#include -#include - -#include "personne.h" -#include "joueurs.h" -#include "championnats.h" - -using namespace std; - -enum TypePartie { - SIMPLE, - DOUBLE, -}; - -enum ResultatPartie { - VICTOIRE, - DEFAITE, - MATCH_NUL, -}; - -class Partie { -public: - static int nextMatchNumber; // Track match numbers - int numero; - TypePartie type; - string nomJoueur1; - string nomJoueur2; - ResultatPartie resultat1; - ResultatPartie resultat2; - - Partie(TypePartie type, string nomJoueur1, string nomJoueur2) { - this->type = type; - this->nomJoueur1 = nomJoueur1; - this->nomJoueur2 = nomJoueur2; - resultat1 = MATCH_NUL; - resultat2 = MATCH_NUL; - numero = nextMatchNumber++; // Assign and increment the ID - } - - void afficher() const { // Use const for methods that don't modify the object - cout << "Type: " << (type == SIMPLE ? "Simple" : "Double") << endl; - cout << "Joueur 1: " << nomJoueur1 << endl; - cout << "Joueur 2: " << nomJoueur2 << endl; - cout << "Résultat 1: " << (resultat1 == VICTOIRE ? "Victoire" : "Défaite") << endl; - cout << "Résultat 2: " << (resultat2 == VICTOIRE ? "Victoire" : "Défaite") << endl; - } - - void setResultat(const std::string& nomJoueur, int resultatAsInt) { - if (resultatAsInt < 0 || resultatAsInt > 2) { - throw std::invalid_argument("Invalid result value. Must be between 0 and 2."); - } - ResultatPartie actualResultat = static_cast(resultatAsInt); - switch (resultatAsInt) { - case 0: - actualResultat = MATCH_NUL; - break; - case 1: - actualResultat = VICTOIRE; - break; - case 2: - actualResultat = DEFAITE; - break; - default: - break; - } - - if (nomJoueur == nomJoueur1) { - resultat1 = actualResultat; - } else if (nomJoueur == nomJoueur2) { - resultat2 = actualResultat; - } - } - - ResultatPartie getResultat1() const { - return resultat1; - } - ResultatPartie getResultat2() const { - return resultat2; - } - string getNomJoueur1() const { - return nomJoueur1; - } - string getNomJoueur2() const { - return nomJoueur2; - } - void setNomJoueur1(string nomJoueur1) { - this->nomJoueur1 = nomJoueur1; - } - void setNomJoueur2(string nomJoueur2) { - this->nomJoueur2 = nomJoueur2; - } -}; - -class GestionParties { -private: - int previousRoundMaxMatchNumber = 0; // Initialize this after completing each round - -public: - vector parties; - vector getParties() { - return parties; - } - vector getPreviousRoundMatches() { - vector previousRoundMatches; - for (const Partie& partie : parties) { - if (partie.numero <= previousRoundMaxMatchNumber) { - previousRoundMatches.push_back(partie); - } - } - return previousRoundMatches; - } - bool isPartieFromPreviousRound(Partie partie) { - return partie.numero <= previousRoundMaxMatchNumber; - } - - int getPreviousRoundMaxMatchNumber() const { - return previousRoundMaxMatchNumber; - } - - void setPreviousRoundMaxMatchNumber(int newMax) { - previousRoundMaxMatchNumber = newMax; - } - void setParties(vector parties) { - this->parties = parties; - } - void ajouterPartie(Partie partie) { - parties.push_back(partie); - } - - void afficherParties() { - for (Partie partie : parties) { - partie.afficher(); - cout << endl; - } - } - - void supprimerPartie(TypePartie type, string nomJoueur1, string nomJoueur2) { - for (int i = 0; i < parties.size(); i++) { - if (parties[i].type == type && parties[i].nomJoueur1 == nomJoueur1 && - parties[i].nomJoueur2 == nomJoueur2) { - parties.erase(parties.begin() + i); - break; - } - } - } -}; - -class PlanificationParties { -public: - vector PlanificationParties::getWinnersFromPreviousRound() { - vector winners; - - // Retrieve the list of played matches from the previous round - vector previousRoundMatches = gestionParties.getPreviousRoundMatches(); - - // Iterate through matches and identify winners - for (Partie partie : previousRoundMatches) { - if (partie.getResultat1() == VICTOIRE) { - winners.push_back(Joueur(partie.getNomJoueur1())); - } else if (partie.getResultat2() == VICTOIRE) { - winners.push_back(Joueur(partie.getNomJoueur2())); - } else { - // Handle draws (optional, logic not provided) - // You can throw an exception or implement logic to handle draws here - // For example, if you want both players to advance: - // winners.push_back(Joueur(partie.getNomJoueur1())); - // winners.push_back(Joueur(partie.getNomJoueur2())); - } - } - return winners; - } - - void creerPartiesEliminatoires() { - // Retrieve the list of enrolled players from the championnat object - vector joueursInscrits = championnat.getJoueursInscrits(); - - // Create a new match for each pair of players - for (int i = 0; i < joueursInscrits.size(); i++) { - for (int j = i + 1; j < joueursInscrits.size(); j++) { - Partie partie(SIMPLE, joueursInscrits[i].getNom(), joueursInscrits[j].getNom()); - gestionParties.ajouterPartie(partie); - } - } - } - - void attribuerJoueursParties() { - // Retrieve the list of matches from the gestionParties object - vector matches = gestionParties.getParties(); - - // Retrieve the list of enrolled players from the championnat object - vector joueursInscrits = championnat.getJoueursInscrits(); - - // Randomly assign players to matches - for (Partie& partie : matches) { - std::random_device rd; - std::mt19937 g(rd()); - std::shuffle(joueursInscrits.begin(), joueursInscrits.end(), g); - // Assign the first two players to the match - partie.setNomJoueur1(joueursInscrits[0].getNom()); - partie.setNomJoueur2(joueursInscrits[1].getNom()); - } - } - - void creerParties16emes() { - // Get sorted players based on rankings (assuming you have a ranking system) - std::vector joueurs = championnat.getJoueursInscrits(); - std::sort(joueurs.begin(), joueurs.end(), [](const Joueur& a, const Joueur& b) { - return a.getClassement() > b.getClassement(); // Sort by descending ranking - }); - - // Pair players based on rankings - for (int i = 0; i < joueurs.size() / 2; ++i) { - Partie partie(SIMPLE, joueurs[i].getNom(), joueurs[joueurs.size() - 1 - i].getNom()); - gestionParties.ajouterPartie(partie); - } - } - - void creerPartiesHuitiemesDeFinale() { - std::vector vainqueurs = getWinnersFromPreviousRound(); // Get winners from previous round - - // (Optional) Update rankings if you have a dynamic ranking system - // ... (your ranking update logic here) - - // Sort winners based on rankings - std::sort(vainqueurs.begin(), vainqueurs.end(), [](const Joueur& j1, const Joueur& j2) { - return j1.getClassement() > j2.getClassement(); - }); - - // Pair and create matches - for (int i = 0; i < vainqueurs.size(); i += 2) { // Increment by 2 to pair players - Partie partie(SIMPLE, vainqueurs[i].getNom(), vainqueurs[i + 1].getNom()); - gestionParties.ajouterPartie(partie); - } - } - - void creerPartiesQuartsDeFinale() { - std::vector vainqueurs = getWinnersFromPreviousRound(); - - std::sort(vainqueurs.begin(), vainqueurs.end(), [](const Joueur& j1, const Joueur& j2) { - return j1.getClassement() > j2.getClassement(); - }); - - // Pair and create matches - for (int i = 0; i < vainqueurs.size(); i += 2) { // Assuming even number of players (adjust logic for odd numbers if needed) - Partie partie(SIMPLE, vainqueurs[i].getNom(), vainqueurs[i + 1].getNom()); - gestionParties.ajouterPartie(partie); - } - } - - void creerPartiesDemiFinales() { - // Retrieve the list of winners from the previous round (e.g., round of 8) - vector vainqueurs = getWinnersFromPreviousRound(); - - // Create a new match for each pair of winners - for (int i = 0; i < vainqueurs.size(); i++) { - for (int j = i + 1; j < vainqueurs.size(); j++) { - Partie partie(SIMPLE, vainqueurs[i].getNom(), vainqueurs[j].getNom()); - gestionParties.ajouterPartie(partie); - } - } - } - - void creerPartieFinale() { - // Retrieve the list of winners from the previous round (e.g., round of 4) - vector vainqueurs = getWinnersFromPreviousRound(); - - // Check if there are exactly two winners (assuming semifinals) - if (vainqueurs.size() != 2) { - throw runtime_error("Unexpected number of winners in semifinals."); - } - - // Create a new match for the two winners - Partie partie(SIMPLE, vainqueurs[0].getNom(), vainqueurs[1].getNom()); - gestionParties.ajouterPartie(partie); - } -}; - -#endif diff --git a/personne.h b/personne.h deleted file mode 100644 index fcb5c6d..0000000 --- a/personne.h +++ /dev/null @@ -1,73 +0,0 @@ -#ifndef PERSONNE_H -#define PERSONNE_H -#include -#include -#include - -using namespace std; - -class Personne { -public: - string nom; - int age; - -public: - Personne(string nom, int age) : nom(nom), age(age) {} - - void afficher() const { - cout << "Nom: " << nom << endl; - cout << "Age: " << age << endl; - } -}; - -class Client : public Personne { -public: - string adresse; - string telephone; - -public: - Client(string nom, int age, string adresse, string telephone) - : Personne(nom, age), adresse(adresse), telephone(telephone) {} - - void afficher() const { - Personne::afficher(); - cout << "Adresse: " << adresse << endl; - cout << "Telephone: " << telephone << endl; - } - class GestionClients { - void ajouterClient(Client client); - void supprimerClient(string nom); - Client* rechercherClient(string nom); - const vector& getClients() const; - void trierClientsParNom(); - - private: - vector clients; - }; -}; - -class Joueur : public Personne { -public: - int classement; - -public: - Joueur(string nom, int age, int classement) - : Personne(nom, age), classement(classement) {} - - void afficher() const { - Personne::afficher(); - cout << "Classement: " << classement << endl; - } - class GestionJoueurs { - void ajouterJoueur(Joueur joueur); - void supprimerJoueur(string nom); - Joueur* rechercherJoueur(string nom); - const vector& getJoueurs() const; - void trierJoueursParClassement(); - -private: - vector joueurs; -}; -}; - -#endif \ No newline at end of file diff --git a/places.h b/places.h deleted file mode 100644 index 33a98fa..0000000 --- a/places.h +++ /dev/null @@ -1,59 +0,0 @@ -#ifndef PLACES_H -#define PLACES_H - -#include -#include - -using namespace std; - -// Définition de la classe Place -class Place { -public: - string type; - double prix; - -public: - Place(string type, double prix) : type(type), prix(prix) {} - - void afficher() const { - cout << "Type: " << type << endl; - cout << "Prix: " << prix << endl; - } - - string getType() const { return type; } - double getPrix() const { return prix; } -}; - -// Définition de la classe StandardPlace -class StandardPlace : public Place { -public: - StandardPlace(int numero) : Place("Standard", 10.0), numero(numero) {} - - void afficher() const { - Place::afficher(); - cout << "Numéro: " << numero << endl; - } - - int getNumero() const { return numero; } - -private: - int numero; -}; - -// Définition de la classe VipPlace -class VipPlace : public Place { -public: - VipPlace(int numero) : Place("VIP", 20.0), numero(numero) {} - - void afficher() const { - Place::afficher(); - cout << "Numéro: " << numero << endl; - } - - int getNumero() const { return numero; } - -private: - int numero; -}; - -#endif diff --git a/reservations.h b/reservations.h deleted file mode 100644 index a97e742..0000000 --- a/reservations.h +++ /dev/null @@ -1,60 +0,0 @@ -#ifndef RESERVATIONS_H -#define RESERVATIONS_H -#include "places.h" -#include -#include - -using namespace std; - -class Reservation { -public: - Reservation(){} - Reservation(Joueur* joueur, Partie* partie, Place* place) : joueur(joueur), partie(partie), place(place) {} - Joueur* getJoueur() const{ return joueur; } - Partie* getPartie() const{ return partie; } - Place* getPlace() const{ return place; } - void setJoueur(Joueur* joueur){this->joueur = joueur;} - void setPartie(Partie* partie) {this->partie = partie;} - void setPlace(Place* place) {this->place = place;} - -private: - Joueur* joueur; - Partie* partie; - Place* place; -}; - -class GestionReservations { -public: - void ajouterReservation(Reservation reservation){ - reservations.push_back(reservation); - } - void supprimerReservation(Joueur* joueur, Partie* partie, Place* place){ - for (Reservation& reservation : reservations) { - if (reservation.getJoueur() == joueur && reservation.getPartie() == partie && reservation.getPlace() == place) { - reservations.erase(remove(reservations.begin(), reservations.end(), reservation), reservations.end()); - break; - } - } - } - Reservation* rechercherReservation(Joueur* joueur, Partie* partie, Place* place){ - for (Reservation& reservation : reservations) { - if (reservation.getJoueur() == joueur && reservation.getPartie() == partie && reservation.getPlace() == place) { - return &reservation; - } - } - return nullptr; - } - const vector& getReservations() const{ - return reservations; - } - void trierReservationsParJoueur(){ - sort(reservations.begin(), reservations.end(), [](const Reservation& a, const Reservation& b) { - return a.getJoueur()->getNom() < b.getJoueur()->getNom(); - }); - } - -private: - vector reservations; -}; - -#endif // RESERVATIONS_H \ No newline at end of file diff --git a/scoreboard.h b/scoreboard.h new file mode 100644 index 0000000..a62c329 --- /dev/null +++ b/scoreboard.h @@ -0,0 +1,20 @@ +#ifndef SCOREBOARD_H +#define SCOREBOARD_H + +#include +#include +#include +#include + +class Scoreboard { +public: + void afficherScores() const; + void ajouterScore(const std::string& joueur1, const std::string& joueur2, int score1, int score2); + void sauvegarderScores(const std::string& filename) const; + void chargerScores(const std::string& filename); + +private: + std::map> scores; +}; + +#endif // SCOREBOARD_H diff --git a/scores.h b/scores.h deleted file mode 100644 index 10ed74b..0000000 --- a/scores.h +++ /dev/null @@ -1,72 +0,0 @@ -#ifndef SCORES_H -#define SCORES_H - -#include -#include -#include -#include -#include -#include "joueurs.h" -#include "championnats.h" - -using namespace std; - -class Score { -public: - string nomJoueur; - int score; - -public: - Score(string nomJoueur, int score) : nomJoueur(nomJoueur), score(score) {} - - void afficher() const { - cout << "Nom: " << nomJoueur << endl; - cout << "Score: " << score << endl; - } -}; - -class GestionScores { -public: - std::map scoresMap; - - void ajouterScore(string nomJoueur, int score) { - scoresMap[nomJoueur] = score; - } - - void updateScore(string nomJoueur, int newScore) { - scoresMap[nomJoueur] = newScore; - } - - vector getTopScores(int count) { - vector topScores; - for (const auto& pair : scoresMap) { - topScores.emplace_back(pair.first, pair.second); - } - std::sort(topScores.begin(), topScores.end(), - [](const Score& score1, const Score& score2) { - return score1.score > score2.score; - }); - if (count < topScores.size()) { - topScores.resize(count); - } - return topScores; - } - - void supprimerScore(string nomJoueur) { - auto it = scoresMap.find(nomJoueur); - if (it != scoresMap.end()) { - scoresMap.erase(it); - } - } - - void afficherScores() { - for (const auto& pair : scoresMap) { - cout << "Nom: " << pair.first << endl; - cout << "Score: " << pair.second << endl; - } - } -}; - - - -#endif \ No newline at end of file diff --git a/terrains.h b/terrains.h deleted file mode 100644 index 0cccd1f..0000000 --- a/terrains.h +++ /dev/null @@ -1,57 +0,0 @@ -#ifndef TERRAINS_H -#define TERRAINS_H - -#include -#include -#include - -using namespace std; - -enum TypeTerrain { - DUR, - TERRE_BATTUE, - GAZON -}; - -class Terrain { -public: - TypeTerrain type; - int longueur; - int largeur; - -public: - Terrain(TypeTerrain type, int longueur, int largeur) : type(type), longueur(longueur), largeur(largeur) {} - - void afficher() { - cout << "Type: " << (type == DUR ? "Dur" : type == TERRE_BATTUE ? "Terre battue" : "Gazon") << endl; - cout << "Longueur: " << longueur << endl; - cout << "Largeur: " << largeur << endl; - } -}; - -class GestionTerrains { -public: - vector terrains; - - void ajouterTerrain(Terrain terrain) { - terrains.push_back(terrain); - } - - void afficherTerrains() { - for (Terrain terrain : terrains) { - terrain.afficher(); - cout << endl; - } - } - - void supprimerTerrain(TypeTerrain type, int longueur, int largeur) { - for (int i = 0; i < terrains.size(); i++) { - if (terrains[i].type == type && terrains[i].longueur == longueur && terrains[i].largeur == largeur) { - terrains.erase(terrains.begin() + i); - break; - } - } - } -}; - -#endif diff --git a/tickets.h b/tickets.h index 6c29e2c..66c381b 100644 --- a/tickets.h +++ b/tickets.h @@ -1,52 +1,61 @@ -#ifndef TICKETS_H -#define TICKETS_H -using namespace std; -#include -#include - -// Classe Ticket - -class Ticket { - public: - int numero; - string place; - float prix; - - Ticket(int numero, string place, float prix) { - this->numero = numero; - this->place = place; - this->prix = prix; - } - - void afficher() { - cout << "Ticket numero: " << numero << endl; - cout << "Place: " << place << endl; - cout << "Prix: " << prix << endl; - } -}; - -class GestionTickets { - public: - vector tickets; - - void ajouterTicket(Ticket ticket) { - tickets.push_back(ticket); - } - - void supprimerTicket(int numero) { - for (int i = 0; i < tickets.size(); i++) { - if (tickets[i].numero == numero) { - tickets.erase(tickets.begin() + i); - break; - } - } - } - - void afficherTickets() { - for (Ticket ticket : tickets) { - ticket.afficher(); - } - } -}; - -#endif +#ifndef TICKETS_H +#define TICKETS_H +using namespace std; +#include +#include + +// Classe Ticket + +class Ticket { + public: + int numero; + string place; + float prix; + + Ticket(int numero, string place, float prix) { + this->numero = numero; + this->place = place; + this->prix = prix; + } + + void afficher() { + cout << "Ticket numero: " << numero << endl; + cout << "Place: " << place << endl; + cout << "Prix: " << prix << endl; + } +}; + +class GestionTickets { +<<<<<<< Updated upstream + public: + vector tickets; + + void ajouterTicket(Ticket ticket) { + tickets.push_back(ticket); + } + + void supprimerTicket(int numero) { + for (int i = 0; i < tickets.size(); i++) { + if (tickets[i].numero == numero) { + tickets.erase(tickets.begin() + i); + break; + } + } + } + + void afficherTickets() { + for (Ticket ticket : tickets) { + ticket.afficher(); + } + } +======= +public: + vector tickets; + + void ajouterTicket(Ticket ticket); + void afficherTickets(); + void supprimerTicket(int numeroTicket); +>>>>>>> Stashed changes +}; + +#endif diff --git a/tree.txt b/tree.txt new file mode 100644 index 0000000..22b1f1f Binary files /dev/null and b/tree.txt differ diff --git a/workspace.code-workspace b/workspace.code-workspace index ea5bf30..cfad5a7 100644 --- a/workspace.code-workspace +++ b/workspace.code-workspace @@ -1,10 +1,68 @@ { "folders": [ { + "name": "special-broccoli", "path": "." } ], "settings": { + "C_Cpp_Runner.cCompilerPath": "gcc", + "C_Cpp_Runner.cppCompilerPath": "g++", + "C_Cpp_Runner.debuggerPath": "gdb", + "C_Cpp_Runner.cStandard": "", + "C_Cpp_Runner.cppStandard": "", + "C_Cpp_Runner.msvcBatchPath": "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Auxiliary/Build/vcvarsall.bat", + "C_Cpp_Runner.useMsvc": false, + "C_Cpp_Runner.warnings": [ + "-Wall", + "-Wextra", + "-Wpedantic", + "-Wshadow", + "-Wformat=2", + "-Wcast-align", + "-Wconversion", + "-Wsign-conversion", + "-Wnull-dereference" + ], + "C_Cpp_Runner.msvcWarnings": [ + "/W4", + "/permissive-", + "/w14242", + "/w14287", + "/w14296", + "/w14311", + "/w14826", + "/w44062", + "/w44242", + "/w14905", + "/w14906", + "/w14263", + "/w44265", + "/w14928" + ], + "C_Cpp_Runner.enableWarnings": true, + "C_Cpp_Runner.warningsAsError": false, + "C_Cpp_Runner.compilerArgs": [], + "C_Cpp_Runner.linkerArgs": [], + "C_Cpp_Runner.includePaths": [], + "C_Cpp_Runner.includeSearch": [ + "*", + "**/*" + ], + "C_Cpp_Runner.excludeSearch": [ + "**/build", + "**/build/**", + "**/.*", + "**/.*/**", + "**/.vscode", + "**/.vscode/**" + ], + "C_Cpp_Runner.useAddressSanitizer": false, + "C_Cpp_Runner.useUndefinedSanitizer": false, + "C_Cpp_Runner.useLeakSanitizer": false, + "C_Cpp_Runner.showCompilationTime": false, + "C_Cpp_Runner.useLinkTimeOptimization": false, + "C_Cpp_Runner.msvcSecureNoWarnings": false, "files.associations": { "array": "cpp", "atomic": "cpp", @@ -15,6 +73,7 @@ "cmath": "cpp", "compare": "cpp", "concepts": "cpp", + "cstdarg": "cpp", "cstddef": "cpp", "cstdint": "cpp", "cstdio": "cpp", @@ -22,6 +81,7 @@ "cwchar": "cpp", "cwctype": "cpp", "deque": "cpp", + "map": "cpp", "string": "cpp", "unordered_map": "cpp", "vector": "cpp", @@ -49,17 +109,7 @@ "ostream": "cpp", "stdexcept": "cpp", "streambuf": "cpp", - "typeinfo": "cpp", - "cstdarg": "cpp", - "fstream": "cpp", - "sstream": "cpp", - "unordered_set": "cpp", - "map": "cpp", - "format": "cpp", - "xstring": "cpp" - }, - "cloudcode.duetAI.languages": [ - "cpp" - ] + "typeinfo": "cpp" + } } } \ No newline at end of file