| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728 | 
							- /* 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 <cstddef>
 
- #include <iosfwd>
 
- #include <map>
 
- #include <memory>
 
- #include <set>
 
- #include <string>
 
- #include <unordered_map>
 
- #include <vector>
 
- #include <cm3p/kwiml/int.h>
 
- #include "cmCustomCommandTypes.h"
 
- #include "cmListFileCache.h"
 
- #include "cmMessageType.h"
 
- #include "cmOutputConverter.h"
 
- #include "cmPolicies.h"
 
- #include "cmProperty.h"
 
- #include "cmStateSnapshot.h"
 
- class cmCompiledGeneratorExpression;
 
- class cmComputeLinkInformation;
 
- class cmCustomCommand;
 
- class cmCustomCommandGenerator;
 
- class cmCustomCommandLines;
 
- class cmGeneratedFileStream;
 
- class cmGeneratorTarget;
 
- class cmGlobalGenerator;
 
- class cmImplicitDependsList;
 
- class cmLinkLineComputer;
 
- class cmMakefile;
 
- class cmRulePlaceholderExpander;
 
- class cmSourceFile;
 
- class cmState;
 
- class cmTarget;
 
- class cmake;
 
- /** Flag if byproducts shall also be considered.  */
 
- enum class cmSourceOutputKind
 
- {
 
-   OutputOnly,
 
-   OutputOrByproduct
 
- };
 
- /** What scanner to use for dependencies lookup.  */
 
- enum class cmDependencyScannerKind
 
- {
 
-   CMake,
 
-   Compiler
 
- };
 
- /** Target and source file which have a specific output.  */
 
- struct cmSourcesWithOutput
 
- {
 
-   /** Target with byproduct.  */
 
-   cmTarget* Target = nullptr;
 
-   /** Source file with output or byproduct.  */
 
-   cmSourceFile* Source = nullptr;
 
-   bool SourceIsByproduct = false;
 
- };
 
- /** \class cmLocalGenerator
 
-  * \brief Create required build files for a directory.
 
-  *
 
-  * Subclasses of this abstract class generate makefiles, DSP, etc for various
 
-  * platforms. This class should never be constructed directly. A
 
-  * GlobalGenerator will create it and invoke the appropriate commands on it.
 
-  */
 
- class cmLocalGenerator : public cmOutputConverter
 
- {
 
- public:
 
-   cmLocalGenerator(cmGlobalGenerator* gg, cmMakefile* makefile);
 
-   virtual ~cmLocalGenerator();
 
-   /**
 
-    * Generate the makefile for this directory.
 
-    */
 
-   virtual void Generate() {}
 
-   virtual void ComputeHomeRelativeOutputPath() {}
 
-   /**
 
-    * Calls TraceVSDependencies() on all targets of this generator.
 
-    */
 
-   void TraceDependencies() const;
 
-   virtual void AddHelperCommands() {}
 
-   /**
 
-    * Generate the install rules files in this directory.
 
-    */
 
-   void GenerateInstallRules();
 
-   /**
 
-    * Generate the test files for tests.
 
-    */
 
-   void GenerateTestFiles();
 
-   /**
 
-    * Generate a manifest of target files that will be built.
 
-    */
 
-   void ComputeTargetManifest();
 
-   bool ComputeTargetCompileFeatures();
 
-   bool IsRootMakefile() const;
 
-   //! Get the makefile for this generator
 
-   cmMakefile* GetMakefile() { return this->Makefile; }
 
-   //! Get the makefile for this generator, const version
 
-   const cmMakefile* GetMakefile() const { return this->Makefile; }
 
-   //! Get the GlobalGenerator this is associated with
 
-   cmGlobalGenerator* GetGlobalGenerator() { return this->GlobalGenerator; }
 
-   const cmGlobalGenerator* GetGlobalGenerator() const
 
-   {
 
-     return this->GlobalGenerator;
 
-   }
 
-   virtual cmRulePlaceholderExpander* CreateRulePlaceholderExpander() const;
 
-   std::string GetLinkLibsCMP0065(std::string const& linkLanguage,
 
-                                  cmGeneratorTarget& tgt) const;
 
-   cmState* GetState() const;
 
-   cmStateSnapshot GetStateSnapshot() const;
 
-   void AddArchitectureFlags(std::string& flags,
 
-                             cmGeneratorTarget const* target,
 
-                             const std::string& lang, const std::string& config,
 
-                             const std::string& filterArch = std::string());
 
-   void AddLanguageFlags(std::string& flags, cmGeneratorTarget const* target,
 
-                         const std::string& lang, const std::string& config);
 
-   void AddLanguageFlagsForLinking(std::string& flags,
 
-                                   cmGeneratorTarget const* target,
 
-                                   const std::string& lang,
 
-                                   const std::string& config);
 
-   void AddCMP0018Flags(std::string& flags, cmGeneratorTarget const* target,
 
-                        std::string const& lang, const std::string& config);
 
-   void AddVisibilityPresetFlags(std::string& flags,
 
-                                 cmGeneratorTarget const* target,
 
-                                 const std::string& lang);
 
-   void AddConfigVariableFlags(std::string& flags, const std::string& var,
 
-                               const std::string& config);
 
-   void AddCompilerRequirementFlag(std::string& flags,
 
-                                   cmGeneratorTarget const* target,
 
-                                   const std::string& lang,
 
-                                   const std::string& config);
 
-   //! Append flags to a string.
 
-   virtual void AppendFlags(std::string& flags,
 
-                            const std::string& newFlags) const;
 
-   virtual void AppendFlags(std::string& flags,
 
-                            const std::vector<BT<std::string>>& newFlags) const;
 
-   virtual void AppendFlagEscape(std::string& flags,
 
-                                 const std::string& rawFlag) const;
 
-   void AddISPCDependencies(cmGeneratorTarget* target);
 
-   void AddPchDependencies(cmGeneratorTarget* target);
 
-   void AddUnityBuild(cmGeneratorTarget* target);
 
-   void AppendIPOLinkerFlags(std::string& flags, cmGeneratorTarget* target,
 
-                             const std::string& config,
 
-                             const std::string& lang);
 
-   void AppendPositionIndependentLinkerFlags(std::string& flags,
 
-                                             cmGeneratorTarget* target,
 
-                                             const std::string& config,
 
-                                             const std::string& lang);
 
-   bool AppendLWYUFlags(std::string& flags, const cmGeneratorTarget* target,
 
-                        const std::string& lang);
 
-   enum class IncludePathStyle
 
-   {
 
-     Default,
 
-     Absolute,
 
-   };
 
-   //! Get the include flags for the current makefile and language
 
-   std::string GetIncludeFlags(
 
-     std::vector<std::string> const& includes, cmGeneratorTarget* target,
 
-     std::string const& lang, std::string const& config,
 
-     bool forResponseFile = false,
 
-     IncludePathStyle pathStyle = IncludePathStyle::Default);
 
-   using GeneratorTargetVector =
 
-     std::vector<std::unique_ptr<cmGeneratorTarget>>;
 
-   const GeneratorTargetVector& GetGeneratorTargets() const
 
-   {
 
-     return this->GeneratorTargets;
 
-   }
 
-   void AddGeneratorTarget(std::unique_ptr<cmGeneratorTarget> gt);
 
-   void AddImportedGeneratorTarget(cmGeneratorTarget* gt);
 
-   void AddOwnedImportedGeneratorTarget(std::unique_ptr<cmGeneratorTarget> gt);
 
-   cmGeneratorTarget* FindLocalNonAliasGeneratorTarget(
 
-     const std::string& name) const;
 
-   cmGeneratorTarget* FindGeneratorTargetToUse(const std::string& name) const;
 
-   /**
 
-    * Process a list of include directories
 
-    */
 
-   void AppendIncludeDirectories(std::vector<std::string>& includes,
 
-                                 std::string const& includes_list,
 
-                                 const cmSourceFile& sourceFile) const;
 
-   void AppendIncludeDirectories(std::vector<std::string>& includes,
 
-                                 const std::vector<std::string>& includes_vec,
 
-                                 const cmSourceFile& sourceFile) const;
 
-   /**
 
-    * Encode a list of preprocessor definitions for the compiler
 
-    * command line.
 
-    */
 
-   void AppendDefines(std::set<std::string>& defines,
 
-                      std::string const& defines_list) const;
 
-   void AppendDefines(std::set<BT<std::string>>& defines,
 
-                      std::string const& defines_list) const;
 
-   void AppendDefines(std::set<BT<std::string>>& defines,
 
-                      const std::vector<BT<std::string>>& defines_vec) const;
 
-   /**
 
-    * Encode a list of compile options for the compiler
 
-    * command line.
 
-    */
 
-   void AppendCompileOptions(std::string& options,
 
-                             std::string const& options_list,
 
-                             const char* regex = nullptr) const;
 
-   void AppendCompileOptions(std::string& options,
 
-                             const std::vector<std::string>& options_vec,
 
-                             const char* regex = nullptr) const;
 
-   void AppendCompileOptions(std::vector<BT<std::string>>& options,
 
-                             const std::vector<BT<std::string>>& options_vec,
 
-                             const char* regex = nullptr) const;
 
-   /**
 
-    * Join a set of defines into a definesString with a space separator.
 
-    */
 
-   void JoinDefines(const std::set<std::string>& defines,
 
-                    std::string& definesString, const std::string& lang);
 
-   /** Lookup and append options associated with a particular feature.  */
 
-   void AppendFeatureOptions(std::string& flags, const std::string& lang,
 
-                             const char* feature);
 
-   cmProp GetFeature(const std::string& feature, const std::string& config);
 
-   /** \brief Get absolute path to dependency \a name
 
-    *
 
-    * Translate a dependency as given in CMake code to the name to
 
-    * appear in a generated build file.
 
-    * - If \a name is a utility target, returns false.
 
-    * - If \a name is a CMake target, it will be transformed to the real output
 
-    *   location of that target for the given configuration.
 
-    * - If \a name is the full path to a file, it will be returned.
 
-    * - Otherwise \a name is treated as a relative path with respect to
 
-    *   the source directory of this generator.  This should only be
 
-    *   used for dependencies of custom commands.
 
-    */
 
-   bool GetRealDependency(const std::string& name, const std::string& config,
 
-                          std::string& dep);
 
-   /** Called from command-line hook to clear dependencies.  */
 
-   virtual void ClearDependencies(cmMakefile* /* mf */, bool /* verbose */) {}
 
-   /** Called from command-line hook to update dependencies.  */
 
-   virtual bool UpdateDependencies(const std::string& /* tgtInfo */,
 
-                                   bool /*verbose*/, bool /*color*/)
 
-   {
 
-     return true;
 
-   }
 
-   /** @brief Get the include directories for the current makefile and language
 
-    * and optional the compiler implicit include directories.
 
-    *
 
-    * @arg stripImplicitDirs Strip all directories found in
 
-    *      CMAKE_<LANG>_IMPLICIT_INCLUDE_DIRECTORIES from the result.
 
-    * @arg appendAllImplicitDirs Append all directories found in
 
-    *      CMAKE_<LANG>_IMPLICIT_INCLUDE_DIRECTORIES to the result.
 
-    */
 
-   std::vector<BT<std::string>> GetIncludeDirectoriesImplicit(
 
-     cmGeneratorTarget const* target, std::string const& lang = "C",
 
-     std::string const& config = "", bool stripImplicitDirs = true,
 
-     bool appendAllImplicitDirs = false) const;
 
-   /** @brief Get the include directories for the current makefile and language
 
-    * and optional the compiler implicit include directories.
 
-    *
 
-    * @arg dirs Directories are appended to this list
 
-    */
 
-   void GetIncludeDirectoriesImplicit(std::vector<std::string>& dirs,
 
-                                      cmGeneratorTarget const* target,
 
-                                      const std::string& lang = "C",
 
-                                      const std::string& config = "",
 
-                                      bool stripImplicitDirs = true,
 
-                                      bool appendAllImplicitDirs = false) const;
 
-   /** @brief Get the include directories for the current makefile and language.
 
-    * @arg dirs Include directories are appended to this list
 
-    */
 
-   void GetIncludeDirectories(std::vector<std::string>& dirs,
 
-                              cmGeneratorTarget const* target,
 
-                              const std::string& lang = "C",
 
-                              const std::string& config = "") const;
 
-   /** @brief Get the include directories for the current makefile and language.
 
-    * @return The include directory list
 
-    */
 
-   std::vector<BT<std::string>> GetIncludeDirectories(
 
-     cmGeneratorTarget const* target, std::string const& lang = "C",
 
-     std::string const& config = "") const;
 
-   void AddCompileOptions(std::string& flags, cmGeneratorTarget* target,
 
-                          const std::string& lang, const std::string& config);
 
-   void AddCompileOptions(std::vector<BT<std::string>>& flags,
 
-                          cmGeneratorTarget* target, const std::string& lang,
 
-                          const std::string& config);
 
-   /**
 
-    * Add a custom PRE_BUILD, PRE_LINK, or POST_BUILD command to a target.
 
-    */
 
-   cmTarget* AddCustomCommandToTarget(
 
-     const std::string& target, const std::vector<std::string>& byproducts,
 
-     const std::vector<std::string>& depends,
 
-     const cmCustomCommandLines& commandLines, cmCustomCommandType type,
 
-     const char* comment, const char* workingDir,
 
-     cmPolicies::PolicyStatus cmp0116, bool escapeOldStyle = true,
 
-     bool uses_terminal = false, const std::string& depfile = "",
 
-     const std::string& job_pool = "", bool command_expand_lists = false,
 
-     cmObjectLibraryCommands objLibCommands = cmObjectLibraryCommands::Reject,
 
-     bool stdPipesUTF8 = false);
 
-   /**
 
-    * Add a custom command to a source file.
 
-    */
 
-   cmSourceFile* AddCustomCommandToOutput(
 
-     const std::string& output, const std::vector<std::string>& depends,
 
-     const std::string& main_dependency,
 
-     const cmCustomCommandLines& commandLines, const char* comment,
 
-     const char* workingDir, cmPolicies::PolicyStatus cmp0116,
 
-     bool replace = false, bool escapeOldStyle = true,
 
-     bool uses_terminal = false, bool command_expand_lists = false,
 
-     const std::string& depfile = "", const std::string& job_pool = "",
 
-     bool stdPipesUTF8 = false);
 
-   cmSourceFile* AddCustomCommandToOutput(
 
-     const std::vector<std::string>& outputs,
 
-     const std::vector<std::string>& byproducts,
 
-     const std::vector<std::string>& depends,
 
-     const std::string& main_dependency,
 
-     const cmImplicitDependsList& implicit_depends,
 
-     const cmCustomCommandLines& commandLines, const char* comment,
 
-     const char* workingDir, cmPolicies::PolicyStatus cmp0116,
 
-     bool replace = false, bool escapeOldStyle = true,
 
-     bool uses_terminal = false, bool command_expand_lists = false,
 
-     const std::string& depfile = "", const std::string& job_pool = "",
 
-     bool stdPipesUTF8 = false);
 
-   /**
 
-    * Add a utility to the build.  A utility target is a command that is run
 
-    * every time the target is built.
 
-    */
 
-   cmTarget* AddUtilityCommand(
 
-     const std::string& utilityName, bool excludeFromAll,
 
-     const char* workingDir, const std::vector<std::string>& byproducts,
 
-     const std::vector<std::string>& depends,
 
-     const cmCustomCommandLines& commandLines, cmPolicies::PolicyStatus cmp0116,
 
-     bool escapeOldStyle = true, const char* comment = nullptr,
 
-     bool uses_terminal = false, bool command_expand_lists = false,
 
-     const std::string& job_pool = "", bool stdPipesUTF8 = false);
 
-   virtual std::string CreateUtilityOutput(
 
-     std::string const& targetName, std::vector<std::string> const& byproducts,
 
-     cmListFileBacktrace const& bt);
 
-   virtual std::vector<cmCustomCommandGenerator> MakeCustomCommandGenerators(
 
-     cmCustomCommand const& cc, std::string const& config);
 
-   std::vector<std::string> ExpandCustomCommandOutputPaths(
 
-     cmCompiledGeneratorExpression const& cge, std::string const& config);
 
-   std::vector<std::string> ExpandCustomCommandOutputGenex(
 
-     std::string const& o, cmListFileBacktrace const& bt);
 
-   /**
 
-    * Add target byproducts.
 
-    */
 
-   void AddTargetByproducts(cmTarget* target,
 
-                            const std::vector<std::string>& byproducts,
 
-                            cmListFileBacktrace const& bt,
 
-                            cmCommandOrigin origin);
 
-   enum class OutputRole
 
-   {
 
-     Primary,
 
-     Byproduct,
 
-   };
 
-   /**
 
-    * Add source file outputs.
 
-    */
 
-   void AddSourceOutputs(cmSourceFile* source,
 
-                         std::vector<std::string> const& outputs,
 
-                         OutputRole role, cmListFileBacktrace const& bt,
 
-                         cmCommandOrigin origin);
 
-   /**
 
-    * Return the target if the provided source name is a byproduct of a utility
 
-    * target or a PRE_BUILD, PRE_LINK, or POST_BUILD command.
 
-    * Return the source file which has the provided source name as output.
 
-    */
 
-   cmSourcesWithOutput GetSourcesWithOutput(const std::string& name) const;
 
-   /**
 
-    * Is there a source file that has the provided source name as an output?
 
-    * If so then return it.
 
-    */
 
-   cmSourceFile* GetSourceFileWithOutput(
 
-     const std::string& name,
 
-     cmSourceOutputKind kind = cmSourceOutputKind::OutputOnly) const;
 
-   std::string GetProjectName() const;
 
-   /** Compute the language used to compile the given source file.  */
 
-   std::string GetSourceFileLanguage(const cmSourceFile& source);
 
-   // Fill the vector with the target names for the object files,
 
-   // preprocessed files and assembly files.
 
-   void GetIndividualFileTargets(std::vector<std::string>&) {}
 
-   /**
 
-    * Get the relative path from the generator output directory to a
 
-    * per-target support directory.
 
-    */
 
-   virtual std::string GetTargetDirectory(
 
-     cmGeneratorTarget const* target) const;
 
-   /**
 
-    * Get the level of backwards compatibility requested by the project
 
-    * in this directory.  This is the value of the CMake variable
 
-    * CMAKE_BACKWARDS_COMPATIBILITY whose format is
 
-    * "major.minor[.patch]".  The returned integer is encoded as
 
-    *
 
-    *   CMake_VERSION_ENCODE(major, minor, patch)
 
-    *
 
-    * and is monotonically increasing with the CMake version.
 
-    */
 
-   KWIML_INT_uint64_t GetBackwardsCompatibility();
 
-   /**
 
-    * Test whether compatibility is set to a given version or lower.
 
-    */
 
-   bool NeedBackwardsCompatibility_2_4();
 
-   cmPolicies::PolicyStatus GetPolicyStatus(cmPolicies::PolicyID id) const;
 
-   cmake* GetCMakeInstance() const;
 
-   std::string const& GetSourceDirectory() const;
 
-   std::string const& GetBinaryDirectory() const;
 
-   std::string const& GetCurrentBinaryDirectory() const;
 
-   std::string const& GetCurrentSourceDirectory() const;
 
-   /**
 
-    * Generate a macOS application bundle Info.plist file.
 
-    */
 
-   void GenerateAppleInfoPList(cmGeneratorTarget* target,
 
-                               const std::string& targetName,
 
-                               const std::string& fname);
 
-   /**
 
-    * Generate a macOS framework Info.plist file.
 
-    */
 
-   void GenerateFrameworkInfoPList(cmGeneratorTarget* target,
 
-                                   const std::string& targetName,
 
-                                   const std::string& fname);
 
-   /** Construct a comment for a custom command.  */
 
-   std::string ConstructComment(cmCustomCommandGenerator const& ccg,
 
-                                const char* default_comment = "") const;
 
-   // Compute object file names.
 
-   std::string GetObjectFileNameWithoutTarget(
 
-     const cmSourceFile& source, std::string const& dir_max,
 
-     bool* hasSourceExtension = nullptr,
 
-     char const* customOutputExtension = nullptr);
 
-   /** Fill out the static linker flags for the given target.  */
 
-   void GetStaticLibraryFlags(std::string& flags, std::string const& config,
 
-                              std::string const& linkLanguage,
 
-                              cmGeneratorTarget* target);
 
-   std::vector<BT<std::string>> GetStaticLibraryFlags(
 
-     std::string const& config, std::string const& linkLanguage,
 
-     cmGeneratorTarget* target);
 
-   /** Fill out these strings for the given target.  Libraries to link,
 
-    *  flags, and linkflags. */
 
-   void GetDeviceLinkFlags(cmLinkLineComputer* linkLineComputer,
 
-                           const std::string& config, std::string& linkLibs,
 
-                           std::string& linkFlags, std::string& frameworkPath,
 
-                           std::string& linkPath, cmGeneratorTarget* target);
 
-   void GetTargetFlags(cmLinkLineComputer* linkLineComputer,
 
-                       const std::string& config, std::string& linkLibs,
 
-                       std::string& flags, std::string& linkFlags,
 
-                       std::string& frameworkPath, std::string& linkPath,
 
-                       cmGeneratorTarget* target);
 
-   void GetTargetFlags(
 
-     cmLinkLineComputer* linkLineComputer, const std::string& config,
 
-     std::vector<BT<std::string>>& linkLibs, std::string& flags,
 
-     std::vector<BT<std::string>>& linkFlags, std::string& frameworkPath,
 
-     std::vector<BT<std::string>>& linkPath, cmGeneratorTarget* target);
 
-   void GetTargetDefines(cmGeneratorTarget const* target,
 
-                         std::string const& config, std::string const& lang,
 
-                         std::set<std::string>& defines) const;
 
-   std::set<BT<std::string>> GetTargetDefines(cmGeneratorTarget const* target,
 
-                                              std::string const& config,
 
-                                              std::string const& lang) const;
 
-   void GetTargetCompileFlags(cmGeneratorTarget* target,
 
-                              std::string const& config,
 
-                              std::string const& lang, std::string& flags,
 
-                              std::string const& arch);
 
-   std::vector<BT<std::string>> GetTargetCompileFlags(
 
-     cmGeneratorTarget* target, std::string const& config,
 
-     std::string const& lang, std::string const& arch = std::string());
 
-   std::string GetFrameworkFlags(std::string const& l,
 
-                                 std::string const& config,
 
-                                 cmGeneratorTarget* target);
 
-   virtual std::string GetTargetFortranFlags(cmGeneratorTarget const* target,
 
-                                             std::string const& config);
 
-   virtual void ComputeObjectFilenames(
 
-     std::map<cmSourceFile const*, std::string>& mapping,
 
-     cmGeneratorTarget const* gt = nullptr);
 
-   bool IsWindowsShell() const;
 
-   bool IsWatcomWMake() const;
 
-   bool IsMinGWMake() const;
 
-   bool IsNMake() const;
 
-   bool IsNinjaMulti() const;
 
-   void IssueMessage(MessageType t, std::string const& text) const;
 
-   void CreateEvaluationFileOutputs();
 
-   void CreateEvaluationFileOutputs(const std::string& config);
 
-   void ProcessEvaluationFiles(std::vector<std::string>& generatedFiles);
 
-   cmProp GetRuleLauncher(cmGeneratorTarget* target, const std::string& prop);
 
- protected:
 
-   // The default implementation ignores the IncludePathStyle and always
 
-   // uses absolute paths.  A generator may override this to use relative
 
-   // paths in some cases.
 
-   virtual std::string ConvertToIncludeReference(
 
-     std::string const& path, IncludePathStyle pathStyle,
 
-     cmOutputConverter::OutputFormat format);
 
-   //! put all the libraries for a target on into the given stream
 
-   void OutputLinkLibraries(cmComputeLinkInformation* pcli,
 
-                            cmLinkLineComputer* linkLineComputer,
 
-                            std::string& linkLibraries,
 
-                            std::string& frameworkPath, std::string& linkPath);
 
-   void OutputLinkLibraries(cmComputeLinkInformation* pcli,
 
-                            cmLinkLineComputer* linkLineComputer,
 
-                            std::vector<BT<std::string>>& linkLibraries,
 
-                            std::string& frameworkPath,
 
-                            std::vector<BT<std::string>>& linkPath);
 
-   // Handle old-style install rules stored in the targets.
 
-   void GenerateTargetInstallRules(
 
-     std::ostream& os, const std::string& config,
 
-     std::vector<std::string> const& configurationTypes);
 
-   virtual void AddGeneratorSpecificInstallSetup(std::ostream&) {}
 
-   std::string& CreateSafeUniqueObjectFileName(const std::string& sin,
 
-                                               std::string const& dir_max);
 
-   /** Check whether the native build system supports the given
 
-       definition.  Issues a warning.  */
 
-   virtual bool CheckDefinition(std::string const& define) const;
 
-   cmMakefile* Makefile;
 
-   cmListFileBacktrace DirectoryBacktrace;
 
-   cmGlobalGenerator* GlobalGenerator;
 
-   std::map<std::string, std::string> UniqueObjectNamesMap;
 
-   std::string::size_type ObjectPathMax;
 
-   std::set<std::string> ObjectMaxPathViolations;
 
-   std::vector<std::string> EnvCPATH;
 
-   using GeneratorTargetMap =
 
-     std::unordered_map<std::string, cmGeneratorTarget*>;
 
-   GeneratorTargetMap GeneratorTargetSearchIndex;
 
-   GeneratorTargetVector GeneratorTargets;
 
-   std::set<cmGeneratorTarget const*> WarnCMP0063;
 
-   GeneratorTargetMap ImportedGeneratorTargets;
 
-   GeneratorTargetVector OwnedImportedGeneratorTargets;
 
-   std::map<std::string, std::string> AliasTargets;
 
-   std::map<std::string, std::string> Compilers;
 
-   std::map<std::string, std::string> VariableMappings;
 
-   std::string CompilerSysroot;
 
-   std::string LinkerSysroot;
 
-   std::unordered_map<std::string, std::string> AppleArchSysroots;
 
-   bool EmitUniversalBinaryFlags;
 
-   KWIML_INT_uint64_t BackwardsCompatibility;
 
-   bool BackwardsCompatibilityFinal;
 
- private:
 
-   /**
 
-    * See LinearGetSourceFileWithOutput for background information
 
-    */
 
-   cmTarget* LinearGetTargetWithOutput(const std::string& name) const;
 
-   /**
 
-    * Generalized old version of GetSourceFileWithOutput kept for
 
-    * backward-compatibility. It implements a linear search and supports
 
-    * relative file paths. It is used as a fall back by GetSourceFileWithOutput
 
-    * and GetSourcesWithOutput.
 
-    */
 
-   cmSourceFile* LinearGetSourceFileWithOutput(const std::string& name,
 
-                                               cmSourceOutputKind kind,
 
-                                               bool& byproduct) const;
 
-   struct SourceEntry
 
-   {
 
-     cmSourcesWithOutput Sources;
 
-   };
 
-   // A map for fast output to input look up.
 
-   using OutputToSourceMap = std::unordered_map<std::string, SourceEntry>;
 
-   OutputToSourceMap OutputToSource;
 
-   void UpdateOutputToSourceMap(std::string const& byproduct, cmTarget* target,
 
-                                cmListFileBacktrace const& bt,
 
-                                cmCommandOrigin origin);
 
-   void UpdateOutputToSourceMap(std::string const& output, cmSourceFile* source,
 
-                                OutputRole role, cmListFileBacktrace const& bt,
 
-                                cmCommandOrigin origin);
 
-   void AddSharedFlags(std::string& flags, const std::string& lang,
 
-                       bool shared);
 
-   bool GetShouldUseOldFlags(bool shared, const std::string& lang) const;
 
-   void AddPositionIndependentFlags(std::string& flags, std::string const& l,
 
-                                    int targetType);
 
-   void ComputeObjectMaxPath();
 
-   bool AllAppleArchSysrootsAreTheSame(const std::vector<std::string>& archs,
 
-                                       cmProp sysroot);
 
-   void CopyPchCompilePdb(const std::string& config, cmGeneratorTarget* target,
 
-                          const std::string& ReuseFrom,
 
-                          cmGeneratorTarget* reuseTarget,
 
-                          std::vector<std::string> const& extensions);
 
-   void IncludeFileInUnitySources(cmGeneratedFileStream& unity_file,
 
-                                  std::string const& sf_full_path,
 
-                                  cmProp beforeInclude, cmProp afterInclude,
 
-                                  cmProp uniqueIdName) const;
 
-   std::vector<std::string> AddUnityFilesModeAuto(
 
-     cmGeneratorTarget* target, std::string const& lang,
 
-     std::vector<cmSourceFile*> const& filtered_sources, cmProp beforeInclude,
 
-     cmProp afterInclude, std::string const& filename_base, size_t batchSize);
 
-   std::vector<std::string> AddUnityFilesModeGroup(
 
-     cmGeneratorTarget* target, std::string const& lang,
 
-     std::vector<cmSourceFile*> const& filtered_sources, cmProp beforeInclude,
 
-     cmProp afterInclude, std::string const& filename_base);
 
- };
 
- #if !defined(CMAKE_BOOTSTRAP)
 
- bool cmLocalGeneratorCheckObjectName(std::string& objName,
 
-                                      std::string::size_type dir_len,
 
-                                      std::string::size_type max_total_len);
 
- #endif
 
- namespace detail {
 
- void AddCustomCommandToTarget(cmLocalGenerator& lg,
 
-                               const cmListFileBacktrace& lfbt,
 
-                               cmCommandOrigin origin, cmTarget* target,
 
-                               const std::vector<std::string>& byproducts,
 
-                               const std::vector<std::string>& depends,
 
-                               const cmCustomCommandLines& commandLines,
 
-                               cmCustomCommandType type, const char* comment,
 
-                               const char* workingDir, bool escapeOldStyle,
 
-                               bool uses_terminal, const std::string& depfile,
 
-                               const std::string& job_pool,
 
-                               bool command_expand_lists, bool stdPipesUTF8,
 
-                               cmPolicies::PolicyStatus cmp0116);
 
- cmSourceFile* AddCustomCommandToOutput(
 
-   cmLocalGenerator& lg, const cmListFileBacktrace& lfbt,
 
-   cmCommandOrigin origin, const std::vector<std::string>& outputs,
 
-   const std::vector<std::string>& byproducts,
 
-   const std::vector<std::string>& depends, const std::string& main_dependency,
 
-   const cmImplicitDependsList& implicit_depends,
 
-   const cmCustomCommandLines& commandLines, const char* comment,
 
-   const char* workingDir, bool replace, bool escapeOldStyle,
 
-   bool uses_terminal, bool command_expand_lists, const std::string& depfile,
 
-   const std::string& job_pool, bool stdPipesUTF8,
 
-   cmPolicies::PolicyStatus cmp0116);
 
- void AppendCustomCommandToOutput(cmLocalGenerator& lg,
 
-                                  const cmListFileBacktrace& lfbt,
 
-                                  const std::string& output,
 
-                                  const std::vector<std::string>& depends,
 
-                                  const cmImplicitDependsList& implicit_depends,
 
-                                  const cmCustomCommandLines& commandLines);
 
- void AddUtilityCommand(cmLocalGenerator& lg, const cmListFileBacktrace& lfbt,
 
-                        cmCommandOrigin origin, cmTarget* target,
 
-                        const char* workingDir,
 
-                        const std::vector<std::string>& byproducts,
 
-                        const std::vector<std::string>& depends,
 
-                        const cmCustomCommandLines& commandLines,
 
-                        bool escapeOldStyle, const char* comment,
 
-                        bool uses_terminal, bool command_expand_lists,
 
-                        const std::string& job_pool, bool stdPipesUTF8,
 
-                        cmPolicies::PolicyStatus cmp0116);
 
- std::vector<std::string> ComputeISPCObjectSuffixes(cmGeneratorTarget* target);
 
- std::vector<std::string> ComputeISPCExtraObjects(
 
-   std::string const& objectName, std::string const& buildDirectory,
 
-   std::vector<std::string> const& ispcSuffixes);
 
- }
 
 
  |