cmGlobalVisualStudioGenerator.h 6.7 KB

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