cmGlobalVisualStudioGenerator.h 6.8 KB

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