/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. */ #ifndef cmQtAutoGenInitializer_h #define cmQtAutoGenInitializer_h #include "cmConfigure.h" // IWYU pragma: keep #include "cmQtAutoGen.h" #include #include #include #include class cmGeneratorTarget; /// @brief Initializes the QtAutoGen generators class cmQtAutoGenInitializer : public cmQtAutoGen { public: static std::string GetQtMajorVersion(cmGeneratorTarget const* target); static std::string GetQtMinorVersion(cmGeneratorTarget const* target, std::string const& qtVersionMajor); /// @brief Rcc job information class Qrc { public: Qrc() : Generated(false) , Unique(false) { } public: std::string LockFile; std::string QrcFile; std::string QrcName; std::string PathChecksum; std::string InfoFile; std::string SettingsFile; std::string RccFile; bool Generated; bool Unique; std::vector Options; std::vector Resources; }; public: cmQtAutoGenInitializer(cmGeneratorTarget* target, bool mocEnabled, bool uicEnabled, bool rccEnabled, std::string const& qtVersionMajor); void InitCustomTargets(); void SetupCustomTargets(); private: void SetupCustomTargetsMoc(); void SetupCustomTargetsUic(); void AddGeneratedSource(std::string const& filename, GeneratorT genType); bool QtVersionGreaterOrEqual(unsigned long requestMajor, unsigned long requestMinor) const; bool RccListInputs(std::string const& fileName, std::vector& files, std::string& errorMessage); private: cmGeneratorTarget* Target; bool MocEnabled; bool UicEnabled; bool RccEnabled; bool MultiConfig; // Qt std::string QtVersionMajor; std::string QtVersionMinor; std::string MocExecutable; std::string UicExecutable; std::string RccExecutable; std::vector RccListOptions; // Configurations std::string ConfigDefault; std::vector ConfigsList; std::string Parallel; // Names std::string AutogenTargetName; std::string AutogenFolder; std::string AutogenInfoFile; std::string AutogenSettingsFile; // Directories std::string DirInfo; std::string DirBuild; std::string DirWork; // Sources std::vector Headers; std::vector Sources; // Moc std::string MocPredefsCmd; std::set MocSkip; std::string MocIncludes; std::map MocIncludesConfig; std::string MocDefines; std::map MocDefinesConfig; // Uic std::set UicSkip; std::vector UicSearchPaths; std::string UicOptions; std::map UicOptionsConfig; std::vector UicFileFiles; std::vector> UicFileOptions; // Rcc std::vector Qrcs; }; #endif