cmGlobalVisualStudioGenerator.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file LICENSE.rst 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. VS14 = 140,
  32. VS15 = 150,
  33. VS16 = 160,
  34. VS17 = 170,
  35. VS18 = 180,
  36. };
  37. ~cmGlobalVisualStudioGenerator() override;
  38. VSVersion GetVersion() const;
  39. void SetVersion(VSVersion v);
  40. /** Is the installed VS an Express edition? */
  41. bool IsExpressEdition() const { return this->ExpressEdition; }
  42. void EnableLanguage(std::vector<std::string> const& languages, cmMakefile*,
  43. bool optional) override;
  44. bool SetGeneratorPlatform(std::string const& p, cmMakefile* mf) override;
  45. /**
  46. * Get the name of the target platform (architecture) for which we generate.
  47. * The names are as defined by VS, e.g. "Win32", "x64", "Itanium", "ARM".
  48. */
  49. std::string const& GetPlatformName() const;
  50. /**
  51. * Configure CMake's Visual Studio macros file into the user's Visual
  52. * Studio macros directory.
  53. */
  54. virtual void ConfigureCMakeVisualStudioMacros();
  55. /**
  56. * Where does this version of Visual Studio look for macros for the
  57. * current user? Returns the empty string if this version of Visual
  58. * Studio does not implement support for VB macros.
  59. */
  60. virtual std::string GetUserMacrosDirectory();
  61. /**
  62. * What is the reg key path to "vsmacros" for this version of Visual
  63. * Studio?
  64. */
  65. virtual std::string GetUserMacrosRegKeyBase();
  66. cmValue GetDebuggerWorkingDirectory(cmGeneratorTarget* gt) const override;
  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, std::string const& vsSolutionFile);
  77. // return true if target is fortran only
  78. bool TargetIsFortranOnly(cmGeneratorTarget const* gt) const;
  79. // return true if target should be included in solution.
  80. virtual bool IsInSolution(cmGeneratorTarget const* gt) const;
  81. // return true if project dependency should be included in solution.
  82. virtual bool IsDepInSolution(std::string const& 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(char const* 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(std::string const& str,
  116. std::string const& 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(std::string const& bindir, std::string const& projectName,
  123. bool dryRun) override;
  124. bool IsVisualStudio() const override { return true; }
  125. //! Lookup a stored GUID or compute one deterministically.
  126. std::string GetGUID(std::string const& name) const;
  127. protected:
  128. cmGlobalVisualStudioGenerator(cmake* cm);
  129. virtual bool InitializePlatform(cmMakefile* mf);
  130. void AddExtraIDETargets() override;
  131. // Does this VS version link targets to each other if there are
  132. // dependencies in the SLN file? This was done for VS versions
  133. // below 8.
  134. virtual bool VSLinksDependencies() const { return true; }
  135. char const* GetIDEVersion() const;
  136. void WriteSLNHeader(std::ostream& fout) const;
  137. VSVersion Version;
  138. bool ExpressEdition;
  139. std::string GeneratorPlatform;
  140. std::string DefaultPlatformName;
  141. std::string ConvertToSolutionPath(std::string const& path) const;
  142. /** Return true if the configuration needs to be deployed */
  143. virtual bool NeedsDeploy(cmGeneratorTarget const& target,
  144. char const* config) const = 0;
  145. /** Returns true if the target system support debugging deployment. */
  146. virtual bool TargetSystemSupportsDeployment() const = 0;
  147. std::set<std::string> IsPartOfDefaultBuild(
  148. std::vector<std::string> const& configs,
  149. OrderedTargetDependSet const& projectTargets,
  150. cmGeneratorTarget const* target) const;
  151. bool IsDependedOn(OrderedTargetDependSet const& projectTargets,
  152. cmGeneratorTarget const* target) const;
  153. std::map<std::string, std::string> GUIDMap;
  154. private:
  155. virtual std::string GetVSMakeProgram() = 0;
  156. void PrintCompilerAdvice(std::ostream&, std::string const&,
  157. cmValue) const override
  158. {
  159. }
  160. };
  161. class cmGlobalVisualStudioGenerator::OrderedTargetDependSet
  162. : public std::multiset<cmTargetDepend,
  163. cmGlobalVisualStudioGenerator::TargetCompare>
  164. {
  165. using derived = std::multiset<cmTargetDepend,
  166. cmGlobalVisualStudioGenerator::TargetCompare>;
  167. public:
  168. using TargetDependSet = cmGlobalGenerator::TargetDependSet;
  169. using TargetSet = cmGlobalVisualStudioGenerator::TargetSet;
  170. OrderedTargetDependSet(TargetDependSet const&, std::string const& first);
  171. OrderedTargetDependSet(TargetSet const&, std::string const& first);
  172. };