/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep #include #include #include #include #include #include #include #include #include #include "cmFilePathChecksum.h" #include "cmQtAutoGen.h" class cmGeneratorTarget; class cmGlobalGenerator; class cmLocalGenerator; class cmMakefile; class cmQtAutoGenGlobalInitializer; class cmSourceFile; class cmTarget; /** \class cmQtAutoGenerator * \brief Initializes the QtAutoGen generators */ class cmQtAutoGenInitializer : public cmQtAutoGen { public: /** String value with per configuration variants. */ class ConfigString { public: std::string Default; std::unordered_map Config; }; /** String values with per configuration variants. */ template class ConfigStrings { public: C Default; std::unordered_map Config; }; /** rcc job. */ class Qrc { public: std::string LockFile; std::string QrcFile; std::string QrcName; std::string QrcPathChecksum; std::string InfoFile; ConfigString SettingsFile; std::string OutputFile; bool Generated = false; bool Unique = false; std::vector Options; std::vector Resources; }; /** moc and/or uic file. */ struct MUFile { std::string FullPath; cmSourceFile* SF = nullptr; std::vector Configs; bool Generated = false; bool SkipMoc = false; bool SkipUic = false; bool MocIt = false; bool UicIt = false; }; using MUFileHandle = std::unique_ptr; /** Abstract moc/uic/rcc generator variables base class. */ struct GenVarsT { bool Enabled = false; // Generator type/name GenT Gen; cm::string_view GenNameUpper; // Executable std::string ExecutableTargetName; cmGeneratorTarget* ExecutableTarget = nullptr; std::string Executable; CompilerFeaturesHandle ExecutableFeatures; GenVarsT(GenT gen) : Gen(gen) , GenNameUpper(cmQtAutoGen::GeneratorNameUpper(gen)) { } }; /** @param mocExecutable The file path to the moc executable. Will be used as fallback to query the version @return The detected Qt version and the required Qt major version. */ static std::pair GetQtVersion( cmGeneratorTarget const* genTarget, std::string mocExecutable); cmQtAutoGenInitializer(cmQtAutoGenGlobalInitializer* globalInitializer, cmGeneratorTarget* genTarget, IntegerVersion const& qtVersion, bool mocEnabled, bool uicEnabled, bool rccEnabled, bool globalAutogenTarget, bool globalAutoRccTarget); bool InitCustomTargets(); bool SetupCustomTargets(); private: /** If moc or uic is enabled, the autogen target will be generated. */ bool MocOrUicEnabled() const { return (this->Moc.Enabled || this->Uic.Enabled); } bool InitMoc(); bool InitUic(); bool InitRcc(); bool InitScanFiles(); bool InitAutogenTarget(); bool InitRccTargets(); bool SetupWriteAutogenInfo(); bool SetupWriteRccInfo(); cmSourceFile* RegisterGeneratedSource(std::string const& filename); cmSourceFile* AddGeneratedSource(std::string const& filename, GenVarsT const& genVars, bool prepend = false); void AddGeneratedSource(ConfigString const& filename, GenVarsT const& genVars, bool prepend = false); void AddToSourceGroup(std::string const& fileName, cm::string_view genNameUpper); void AddCleanFile(std::string const& fileName); void ConfigFileNames(ConfigString& configString, cm::string_view prefix, cm::string_view suffix); void ConfigFileNamesAndGenex(ConfigString& configString, std::string& genex, cm::string_view prefix, cm::string_view suffix); void ConfigFileClean(ConfigString& configString); std::string GetMocBuildPath(MUFile const& muf); bool GetQtExecutable(GenVarsT& genVars, const std::string& executable, bool ignoreMissingTarget) const; void handleSkipPch(cmSourceFile* sf); cmQtAutoGenGlobalInitializer* GlobalInitializer = nullptr; cmGeneratorTarget* GenTarget = nullptr; cmGlobalGenerator* GlobalGen = nullptr; cmLocalGenerator* LocalGen = nullptr; cmMakefile* Makefile = nullptr; cmFilePathChecksum const PathCheckSum; // -- Configuration IntegerVersion QtVersion; unsigned int Verbosity = 0; bool MultiConfig = false; bool CMP0071Accept = false; bool CMP0071Warn = false; bool CMP0100Accept = false; bool CMP0100Warn = false; std::string ConfigDefault; std::vector ConfigsList; std::string TargetsFolder; /** Common directories. */ struct { std::string Info; std::string Build; std::string RelativeBuild; std::string Work; ConfigString Include; std::string IncludeGenExp; } Dir; /** Autogen target variables. */ struct { std::string Name; bool GlobalTarget = false; // Settings unsigned int Parallel = 1; // Configuration files std::string InfoFile; ConfigString SettingsFile; ConfigString ParseCacheFile; // Dependencies bool DependOrigin = false; std::set DependFiles; std::set DependTargets; std::string DepFile; std::string DepFileRuleName; // Sources to process std::unordered_map Headers; std::unordered_map Sources; std::vector FilesGenerated; std::vector CMP0100HeadersWarn; } AutogenTarget; /** moc variables. */ struct MocT : public GenVarsT { MocT() : GenVarsT(GenT::MOC) { } bool RelaxedMode = false; bool PathPrefix = false; ConfigString CompilationFile; std::string CompilationFileGenex; // Compiler implicit pre defines std::vector PredefsCmd; ConfigString PredefsFile; // Defines ConfigStrings> Defines; // Includes ConfigStrings> Includes; // Options std::vector Options; // Filters std::vector MacroNames; std::vector> DependFilters; // Utility std::unordered_set EmittedBuildPaths; } Moc; /** uic variables. */ struct UicT : public GenVarsT { using UiFileT = std::pair>; UicT() : GenVarsT(GenT::UIC) { } std::set SkipUi; std::vector UiFilesNoOptions; std::vector UiFilesWithOptions; ConfigStrings> Options; std::vector SearchPaths; std::vector> UiHeaders; } Uic; /** rcc variables. */ struct RccT : public GenVarsT { RccT() : GenVarsT(GenT::RCC) { } bool GlobalTarget = false; std::vector Qrcs; } Rcc; };