cmGlobalVisualStudioGenerator.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmGlobalVisualStudioGenerator_h
  4. #define cmGlobalVisualStudioGenerator_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include <iosfwd>
  7. #include <map>
  8. #include <set>
  9. #include <string>
  10. #include <vector>
  11. #include "cmGlobalGenerator.h"
  12. #include "cmTargetDepend.h"
  13. class cmCustomCommand;
  14. class cmGeneratorTarget;
  15. class cmLocalGenerator;
  16. class cmMakefile;
  17. class cmake;
  18. /** \class cmGlobalVisualStudioGenerator
  19. * \brief Base class for global Visual Studio generators.
  20. *
  21. * cmGlobalVisualStudioGenerator provides functionality common to all
  22. * global Visual Studio generators.
  23. */
  24. class cmGlobalVisualStudioGenerator : public cmGlobalGenerator
  25. {
  26. public:
  27. /** Known versions of Visual Studio. */
  28. enum VSVersion
  29. {
  30. VS9 = 90,
  31. VS10 = 100,
  32. VS11 = 110,
  33. VS12 = 120,
  34. /* VS13 = 130 was skipped */
  35. VS14 = 140,
  36. VS15 = 150,
  37. VS16 = 160
  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 char* vsSolutionFile = 0);
  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. protected:
  122. cmGlobalVisualStudioGenerator(cmake* cm,
  123. std::string const& platformInGeneratorName);
  124. void AddExtraIDETargets() override;
  125. // Does this VS version link targets to each other if there are
  126. // dependencies in the SLN file? This was done for VS versions
  127. // below 8.
  128. virtual bool VSLinksDependencies() const { return true; }
  129. const char* GetIDEVersion() const;
  130. void WriteSLNHeader(std::ostream& fout);
  131. bool ComputeTargetDepends() override;
  132. class VSDependSet : public std::set<std::string>
  133. {
  134. };
  135. class VSDependMap : public std::map<cmGeneratorTarget const*, VSDependSet>
  136. {
  137. };
  138. VSDependMap VSTargetDepends;
  139. void ComputeVSTargetDepends(cmGeneratorTarget*);
  140. bool CheckTargetLinks(cmGeneratorTarget& target, const std::string& name);
  141. std::string GetUtilityForTarget(cmGeneratorTarget& target,
  142. const std::string&);
  143. virtual std::string WriteUtilityDepend(cmGeneratorTarget const*) = 0;
  144. std::string GetUtilityDepend(const cmGeneratorTarget* target);
  145. typedef std::map<cmGeneratorTarget const*, std::string> UtilityDependsMap;
  146. UtilityDependsMap UtilityDepends;
  147. protected:
  148. VSVersion Version;
  149. bool ExpressEdition;
  150. std::string GeneratorPlatform;
  151. std::string DefaultPlatformName;
  152. bool PlatformInGeneratorName = false;
  153. private:
  154. virtual std::string GetVSMakeProgram() = 0;
  155. void PrintCompilerAdvice(std::ostream&, std::string const&,
  156. const char*) const override
  157. {
  158. }
  159. void FollowLinkDepends(cmGeneratorTarget const* target,
  160. std::set<cmGeneratorTarget const*>& linked);
  161. class TargetSetMap : public std::map<cmGeneratorTarget*, TargetSet>
  162. {
  163. };
  164. TargetSetMap TargetLinkClosure;
  165. void FillLinkClosure(const cmGeneratorTarget* target, TargetSet& linked);
  166. TargetSet const& GetTargetLinkClosure(cmGeneratorTarget* target);
  167. };
  168. class cmGlobalVisualStudioGenerator::OrderedTargetDependSet
  169. : public std::multiset<cmTargetDepend,
  170. cmGlobalVisualStudioGenerator::TargetCompare>
  171. {
  172. typedef std::multiset<cmTargetDepend,
  173. cmGlobalVisualStudioGenerator::TargetCompare>
  174. derived;
  175. public:
  176. typedef cmGlobalGenerator::TargetDependSet TargetDependSet;
  177. typedef cmGlobalVisualStudioGenerator::TargetSet TargetSet;
  178. OrderedTargetDependSet(TargetDependSet const&, std::string const& first);
  179. OrderedTargetDependSet(TargetSet const&, std::string const& first);
  180. };
  181. #endif