cmGlobalVisualStudioGenerator.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #pragma once
  4. #include "cmConfigure.h" // IWYU pragma: keep
  5. #include <iosfwd>
  6. #include <map>
  7. #include <set>
  8. #include <string>
  9. #include <vector>
  10. #include "cm_codecvt_Encoding.hxx"
  11. #include "cmGlobalGenerator.h"
  12. #include "cmTargetDepend.h"
  13. #include "cmValue.h"
  14. class cmCustomCommand;
  15. class cmGeneratorTarget;
  16. class cmLocalGenerator;
  17. class cmMakefile;
  18. class cmake;
  19. /** \class cmGlobalVisualStudioGenerator
  20. * \brief Base class for global Visual Studio generators.
  21. *
  22. * cmGlobalVisualStudioGenerator provides functionality common to all
  23. * global Visual Studio generators.
  24. */
  25. class cmGlobalVisualStudioGenerator : public cmGlobalGenerator
  26. {
  27. public:
  28. /** Known versions of Visual Studio. */
  29. enum class VSVersion : uint16_t
  30. {
  31. VS12 = 120,
  32. /* VS13 = 130 was skipped */
  33. VS14 = 140,
  34. VS15 = 150,
  35. VS16 = 160,
  36. VS17 = 170
  37. };
  38. ~cmGlobalVisualStudioGenerator() override;
  39. VSVersion GetVersion() const;
  40. void SetVersion(VSVersion v);
  41. /** Is the installed VS an Express edition? */
  42. bool IsExpressEdition() const { return this->ExpressEdition; }
  43. void EnableLanguage(std::vector<std::string> const& languages, cmMakefile*,
  44. bool optional) override;
  45. bool SetGeneratorPlatform(std::string const& p, cmMakefile* mf) override;
  46. /**
  47. * Get the name of the target platform (architecture) for which we generate.
  48. * The names are as defined by VS, e.g. "Win32", "x64", "Itanium", "ARM".
  49. */
  50. std::string const& GetPlatformName() const;
  51. /**
  52. * Configure CMake's Visual Studio macros file into the user's Visual
  53. * Studio macros directory.
  54. */
  55. virtual void ConfigureCMakeVisualStudioMacros();
  56. /**
  57. * Where does this version of Visual Studio look for macros for the
  58. * current user? Returns the empty string if this version of Visual
  59. * Studio does not implement support for VB macros.
  60. */
  61. virtual std::string GetUserMacrosDirectory();
  62. /**
  63. * What is the reg key path to "vsmacros" for this version of Visual
  64. * Studio?
  65. */
  66. virtual std::string GetUserMacrosRegKeyBase();
  67. enum MacroName
  68. {
  69. MacroReload,
  70. MacroStop
  71. };
  72. /**
  73. * Call the ReloadProjects macro if necessary based on
  74. * GetFilesReplacedDuringGenerate results.
  75. */
  76. void CallVisualStudioMacro(MacroName m, const std::string& vsSolutionFile);
  77. // return true if target is fortran only
  78. bool TargetIsFortranOnly(const cmGeneratorTarget* gt);
  79. // return true if target should be included in solution.
  80. virtual bool IsInSolution(const cmGeneratorTarget* gt) const;
  81. // return true if project dependency should be included in solution.
  82. virtual bool IsDepInSolution(const std::string& targetName) const;
  83. /** Get the top-level registry key for this VS version. */
  84. std::string GetRegistryBase();
  85. /** Get the top-level registry key for the given VS version. */
  86. static std::string GetRegistryBase(const char* version);
  87. /** Return true if the generated build tree may contain multiple builds.
  88. i.e. "Can I build Debug and Release in the same tree?" */
  89. bool IsMultiConfig() const override { return true; }
  90. /** Return true if building for Windows CE */
  91. virtual bool TargetsWindowsCE() const { return false; }
  92. bool IsIncludeExternalMSProjectSupported() const override { return true; }
  93. /** Get encoding used by generator for generated source files
  94. */
  95. codecvt_Encoding GetMakefileEncoding() const override
  96. {
  97. return codecvt_Encoding::ANSI;
  98. }
  99. class TargetSet : public std::set<cmGeneratorTarget const*>
  100. {
  101. };
  102. class TargetCompare
  103. {
  104. std::string First;
  105. public:
  106. TargetCompare(std::string first)
  107. : First(std::move(first))
  108. {
  109. }
  110. bool operator()(cmGeneratorTarget const* l,
  111. cmGeneratorTarget const* r) const;
  112. };
  113. class OrderedTargetDependSet;
  114. bool FindMakeProgram(cmMakefile*) override;
  115. std::string ExpandCFGIntDir(const std::string& str,
  116. const std::string& config) const override;
  117. void ComputeTargetObjectDirectory(cmGeneratorTarget* gt) const override;
  118. std::string GetStartupProjectName(cmLocalGenerator const* root) const;
  119. void AddSymbolExportCommand(cmGeneratorTarget*,
  120. std::vector<cmCustomCommand>& commands,
  121. std::string const& configName);
  122. bool Open(const std::string& bindir, const std::string& projectName,
  123. bool dryRun) override;
  124. bool IsVisualStudio() const override { return true; }
  125. protected:
  126. cmGlobalVisualStudioGenerator(cmake* cm,
  127. std::string const& platformInGeneratorName);
  128. virtual bool InitializePlatform(cmMakefile* mf);
  129. void AddExtraIDETargets() override;
  130. // Does this VS version link targets to each other if there are
  131. // dependencies in the SLN file? This was done for VS versions
  132. // below 8.
  133. virtual bool VSLinksDependencies() const { return true; }
  134. const char* GetIDEVersion() const;
  135. void WriteSLNHeader(std::ostream& fout);
  136. bool ComputeTargetDepends() override;
  137. class VSDependSet : public std::set<std::string>
  138. {
  139. };
  140. class VSDependMap : public std::map<cmGeneratorTarget const*, VSDependSet>
  141. {
  142. };
  143. VSDependMap VSTargetDepends;
  144. void ComputeVSTargetDepends(cmGeneratorTarget*);
  145. virtual std::string WriteUtilityDepend(cmGeneratorTarget const*) = 0;
  146. std::string GetUtilityDepend(const cmGeneratorTarget* target);
  147. using UtilityDependsMap = std::map<cmGeneratorTarget const*, std::string>;
  148. UtilityDependsMap UtilityDepends;
  149. VSVersion Version;
  150. bool ExpressEdition;
  151. std::string GeneratorPlatform;
  152. std::string DefaultPlatformName;
  153. bool PlatformInGeneratorName = false;
  154. private:
  155. virtual std::string GetVSMakeProgram() = 0;
  156. void PrintCompilerAdvice(std::ostream&, std::string const&,
  157. cmValue) const override
  158. {
  159. }
  160. void FollowLinkDepends(cmGeneratorTarget const* target,
  161. std::set<cmGeneratorTarget const*>& linked);
  162. class TargetSetMap : public std::map<cmGeneratorTarget*, TargetSet>
  163. {
  164. };
  165. TargetSetMap TargetLinkClosure;
  166. void FillLinkClosure(const cmGeneratorTarget* target, TargetSet& linked);
  167. TargetSet const& GetTargetLinkClosure(cmGeneratorTarget* target);
  168. };
  169. class cmGlobalVisualStudioGenerator::OrderedTargetDependSet
  170. : public std::multiset<cmTargetDepend,
  171. cmGlobalVisualStudioGenerator::TargetCompare>
  172. {
  173. using derived = std::multiset<cmTargetDepend,
  174. cmGlobalVisualStudioGenerator::TargetCompare>;
  175. public:
  176. using TargetDependSet = cmGlobalGenerator::TargetDependSet;
  177. using TargetSet = cmGlobalVisualStudioGenerator::TargetSet;
  178. OrderedTargetDependSet(TargetDependSet const&, std::string const& first);
  179. OrderedTargetDependSet(TargetSet const&, std::string const& first);
  180. };