cmGlobalVisualStudioGenerator.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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. class TargetSet : public std::set<cmGeneratorTarget const*>
  91. {
  92. };
  93. class TargetCompare
  94. {
  95. std::string First;
  96. public:
  97. TargetCompare(std::string const& first)
  98. : First(first)
  99. {
  100. }
  101. bool operator()(cmGeneratorTarget const* l,
  102. cmGeneratorTarget const* r) const;
  103. };
  104. class OrderedTargetDependSet;
  105. bool FindMakeProgram(cmMakefile*) override;
  106. std::string ExpandCFGIntDir(const std::string& str,
  107. const std::string& config) const override;
  108. void ComputeTargetObjectDirectory(cmGeneratorTarget* gt) const override;
  109. std::string GetStartupProjectName(cmLocalGenerator const* root) const;
  110. void AddSymbolExportCommand(cmGeneratorTarget*,
  111. std::vector<cmCustomCommand>& commands,
  112. std::string const& configName);
  113. bool Open(const std::string& bindir, const std::string& projectName,
  114. bool dryRun) override;
  115. protected:
  116. cmGlobalVisualStudioGenerator(cmake* cm,
  117. std::string const& platformInGeneratorName);
  118. void AddExtraIDETargets() override;
  119. // Does this VS version link targets to each other if there are
  120. // dependencies in the SLN file? This was done for VS versions
  121. // below 8.
  122. virtual bool VSLinksDependencies() const { return true; }
  123. const char* GetIDEVersion() const;
  124. void WriteSLNHeader(std::ostream& fout);
  125. bool ComputeTargetDepends() override;
  126. class VSDependSet : public std::set<std::string>
  127. {
  128. };
  129. class VSDependMap : public std::map<cmGeneratorTarget const*, VSDependSet>
  130. {
  131. };
  132. VSDependMap VSTargetDepends;
  133. void ComputeVSTargetDepends(cmGeneratorTarget*);
  134. bool CheckTargetLinks(cmGeneratorTarget& target, const std::string& name);
  135. std::string GetUtilityForTarget(cmGeneratorTarget& target,
  136. const std::string&);
  137. virtual std::string WriteUtilityDepend(cmGeneratorTarget const*) = 0;
  138. std::string GetUtilityDepend(const cmGeneratorTarget* target);
  139. typedef std::map<cmGeneratorTarget const*, std::string> UtilityDependsMap;
  140. UtilityDependsMap UtilityDepends;
  141. protected:
  142. VSVersion Version;
  143. bool ExpressEdition;
  144. std::string GeneratorPlatform;
  145. std::string DefaultPlatformName;
  146. bool PlatformInGeneratorName = false;
  147. private:
  148. virtual std::string GetVSMakeProgram() = 0;
  149. void PrintCompilerAdvice(std::ostream&, std::string const&,
  150. const char*) const override
  151. {
  152. }
  153. void FollowLinkDepends(cmGeneratorTarget const* target,
  154. std::set<cmGeneratorTarget const*>& linked);
  155. class TargetSetMap : public std::map<cmGeneratorTarget*, TargetSet>
  156. {
  157. };
  158. TargetSetMap TargetLinkClosure;
  159. void FillLinkClosure(const cmGeneratorTarget* target, TargetSet& linked);
  160. TargetSet const& GetTargetLinkClosure(cmGeneratorTarget* target);
  161. };
  162. class cmGlobalVisualStudioGenerator::OrderedTargetDependSet
  163. : public std::multiset<cmTargetDepend,
  164. cmGlobalVisualStudioGenerator::TargetCompare>
  165. {
  166. typedef std::multiset<cmTargetDepend,
  167. cmGlobalVisualStudioGenerator::TargetCompare>
  168. derived;
  169. public:
  170. typedef cmGlobalGenerator::TargetDependSet TargetDependSet;
  171. typedef cmGlobalVisualStudioGenerator::TargetSet TargetSet;
  172. OrderedTargetDependSet(TargetDependSet const&, std::string const& first);
  173. OrderedTargetDependSet(TargetSet const&, std::string const& first);
  174. };
  175. #endif