cmGlobalVisualStudio8Generator.cxx 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include "cmGlobalVisualStudio8Generator.h"
  4. #include <cm/memory>
  5. #include <cmext/memory>
  6. #include "cmCustomCommand.h"
  7. #include "cmCustomCommandLines.h"
  8. #include "cmDocumentationEntry.h"
  9. #include "cmGeneratedFileStream.h"
  10. #include "cmGeneratorExpression.h"
  11. #include "cmGeneratorTarget.h"
  12. #include "cmLocalVisualStudio7Generator.h"
  13. #include "cmMakefile.h"
  14. #include "cmMessageType.h"
  15. #include "cmSourceFile.h"
  16. #include "cmVisualStudioWCEPlatformParser.h"
  17. #include "cmake.h"
  18. cmGlobalVisualStudio8Generator::cmGlobalVisualStudio8Generator(
  19. cmake* cm, const std::string& name,
  20. std::string const& platformInGeneratorName)
  21. : cmGlobalVisualStudio71Generator(cm, platformInGeneratorName)
  22. {
  23. this->ProjectConfigurationSectionName = "ProjectConfigurationPlatforms";
  24. this->Name = name;
  25. this->ExtraFlagTable = this->GetExtraFlagTableVS8();
  26. }
  27. std::string cmGlobalVisualStudio8Generator::FindDevEnvCommand()
  28. {
  29. // First look for VCExpress.
  30. std::string vsxcmd;
  31. std::string vsxkey =
  32. cmStrCat("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\",
  33. this->GetIDEVersion(), ";InstallDir");
  34. if (cmSystemTools::ReadRegistryValue(vsxkey.c_str(), vsxcmd,
  35. cmSystemTools::KeyWOW64_32)) {
  36. cmSystemTools::ConvertToUnixSlashes(vsxcmd);
  37. vsxcmd += "/VCExpress.exe";
  38. return vsxcmd;
  39. }
  40. // Now look for devenv.
  41. return this->cmGlobalVisualStudio71Generator::FindDevEnvCommand();
  42. }
  43. void cmGlobalVisualStudio8Generator::EnableLanguage(
  44. std::vector<std::string> const& lang, cmMakefile* mf, bool optional)
  45. {
  46. for (std::string const& it : lang) {
  47. if (it == "ASM_MASM") {
  48. this->MasmEnabled = true;
  49. }
  50. }
  51. this->AddPlatformDefinitions(mf);
  52. cmGlobalVisualStudio7Generator::EnableLanguage(lang, mf, optional);
  53. }
  54. void cmGlobalVisualStudio8Generator::AddPlatformDefinitions(cmMakefile* mf)
  55. {
  56. if (this->TargetsWindowsCE()) {
  57. mf->AddDefinition("CMAKE_VS_WINCE_VERSION", this->WindowsCEVersion);
  58. }
  59. }
  60. bool cmGlobalVisualStudio8Generator::SetGeneratorPlatform(std::string const& p,
  61. cmMakefile* mf)
  62. {
  63. if (!this->PlatformInGeneratorName) {
  64. this->GeneratorPlatform = p;
  65. return this->cmGlobalVisualStudio7Generator::SetGeneratorPlatform("", mf);
  66. } else {
  67. return this->cmGlobalVisualStudio7Generator::SetGeneratorPlatform(p, mf);
  68. }
  69. }
  70. std::string cmGlobalVisualStudio8Generator::GetGenerateStampList()
  71. {
  72. return "generate.stamp.list";
  73. }
  74. void cmGlobalVisualStudio8Generator::Configure()
  75. {
  76. this->cmGlobalVisualStudio7Generator::Configure();
  77. }
  78. bool cmGlobalVisualStudio8Generator::UseFolderProperty() const
  79. {
  80. return IsExpressEdition() ? false : cmGlobalGenerator::UseFolderProperty();
  81. }
  82. bool cmGlobalVisualStudio8Generator::AddCheckTarget()
  83. {
  84. // Add a special target on which all other targets depend that
  85. // checks the build system and optionally re-runs CMake.
  86. // Skip the target if no regeneration is to be done.
  87. if (this->GlobalSettingIsOn("CMAKE_SUPPRESS_REGENERATION")) {
  88. return false;
  89. }
  90. std::vector<std::unique_ptr<cmLocalGenerator>> const& generators =
  91. this->LocalGenerators;
  92. auto& lg =
  93. cm::static_reference_cast<cmLocalVisualStudio7Generator>(generators[0]);
  94. const char* no_working_directory = nullptr;
  95. std::vector<std::string> no_byproducts;
  96. std::vector<std::string> no_depends;
  97. cmCustomCommandLines no_commands;
  98. cmTarget* tgt = lg.AddUtilityCommand(CMAKE_CHECK_BUILD_SYSTEM_TARGET, false,
  99. no_working_directory, no_byproducts,
  100. no_depends, no_commands);
  101. auto ptr = cm::make_unique<cmGeneratorTarget>(tgt, &lg);
  102. auto gt = ptr.get();
  103. lg.AddGeneratorTarget(std::move(ptr));
  104. // Organize in the "predefined targets" folder:
  105. //
  106. if (this->UseFolderProperty()) {
  107. tgt->SetProperty("FOLDER", this->GetPredefinedTargetsFolder());
  108. }
  109. // Create a list of all stamp files for this project.
  110. std::vector<std::string> stamps;
  111. std::string stampList = cmStrCat(
  112. "CMakeFiles/", cmGlobalVisualStudio8Generator::GetGenerateStampList());
  113. {
  114. std::string stampListFile =
  115. cmStrCat(generators[0]->GetMakefile()->GetCurrentBinaryDirectory(), '/',
  116. stampList);
  117. std::string stampFile;
  118. cmGeneratedFileStream fout(stampListFile.c_str());
  119. for (const auto& gi : generators) {
  120. stampFile = cmStrCat(gi->GetMakefile()->GetCurrentBinaryDirectory(),
  121. "/CMakeFiles/generate.stamp");
  122. fout << stampFile << "\n";
  123. stamps.push_back(stampFile);
  124. }
  125. }
  126. // Add a custom rule to re-run CMake if any input files changed.
  127. {
  128. // Collect the input files used to generate all targets in this
  129. // project.
  130. std::vector<std::string> listFiles;
  131. for (const auto& gen : generators) {
  132. cmAppend(listFiles, gen->GetMakefile()->GetListFiles());
  133. }
  134. // Add a custom prebuild target to run the VerifyGlobs script.
  135. cmake* cm = this->GetCMakeInstance();
  136. if (cm->DoWriteGlobVerifyTarget()) {
  137. cmCustomCommandLines verifyCommandLines = cmMakeSingleCommandLine(
  138. { cmSystemTools::GetCMakeCommand(), "-P", cm->GetGlobVerifyScript() });
  139. std::vector<std::string> byproducts;
  140. byproducts.push_back(cm->GetGlobVerifyStamp());
  141. lg.AddCustomCommandToTarget(
  142. CMAKE_CHECK_BUILD_SYSTEM_TARGET, byproducts, no_depends,
  143. verifyCommandLines, cmCustomCommandType::PRE_BUILD,
  144. "Checking File Globs", no_working_directory, false);
  145. // Ensure ZERO_CHECK always runs in Visual Studio using MSBuild,
  146. // otherwise the prebuild command will not be run.
  147. tgt->SetProperty("VS_GLOBAL_DisableFastUpToDateCheck", "true");
  148. listFiles.push_back(cm->GetGlobVerifyStamp());
  149. }
  150. // Sort the list of input files and remove duplicates.
  151. std::sort(listFiles.begin(), listFiles.end(), std::less<std::string>());
  152. std::vector<std::string>::iterator new_end =
  153. std::unique(listFiles.begin(), listFiles.end());
  154. listFiles.erase(new_end, listFiles.end());
  155. // Create a rule to re-run CMake.
  156. std::string argS = cmStrCat("-S", lg.GetSourceDirectory());
  157. std::string argB = cmStrCat("-B", lg.GetBinaryDirectory());
  158. std::string const sln =
  159. lg.GetBinaryDirectory() + "/" + lg.GetProjectName() + ".sln";
  160. cmCustomCommandLines commandLines = cmMakeSingleCommandLine(
  161. { cmSystemTools::GetCMakeCommand(), argS, argB, "--check-stamp-list",
  162. stampList, "--vs-solution-file", sln });
  163. // Add the rule. Note that we cannot use the CMakeLists.txt
  164. // file as the main dependency because it would get
  165. // overwritten by the CreateVCProjBuildRule.
  166. // (this could be avoided with per-target source files)
  167. std::string no_main_dependency;
  168. cmImplicitDependsList no_implicit_depends;
  169. if (cmSourceFile* file = lg.AddCustomCommandToOutput(
  170. stamps, no_byproducts, listFiles, no_main_dependency,
  171. no_implicit_depends, commandLines, "Checking Build System",
  172. no_working_directory, true, false)) {
  173. gt->AddSource(file->ResolveFullPath());
  174. } else {
  175. cmSystemTools::Error("Error adding rule for " + stamps[0]);
  176. }
  177. }
  178. return true;
  179. }
  180. void cmGlobalVisualStudio8Generator::AddExtraIDETargets()
  181. {
  182. cmGlobalVisualStudio7Generator::AddExtraIDETargets();
  183. if (this->AddCheckTarget()) {
  184. for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i) {
  185. const auto& tgts = this->LocalGenerators[i]->GetGeneratorTargets();
  186. // All targets depend on the build-system check target.
  187. for (const auto& ti : tgts) {
  188. if (ti->GetName() != CMAKE_CHECK_BUILD_SYSTEM_TARGET) {
  189. ti->Target->AddUtility(CMAKE_CHECK_BUILD_SYSTEM_TARGET);
  190. }
  191. }
  192. }
  193. }
  194. }
  195. void cmGlobalVisualStudio8Generator::WriteSolutionConfigurations(
  196. std::ostream& fout, std::vector<std::string> const& configs)
  197. {
  198. fout << "\tGlobalSection(SolutionConfigurationPlatforms) = preSolution\n";
  199. for (std::string const& i : configs) {
  200. fout << "\t\t" << i << "|" << this->GetPlatformName() << " = " << i << "|"
  201. << this->GetPlatformName() << "\n";
  202. }
  203. fout << "\tEndGlobalSection\n";
  204. }
  205. void cmGlobalVisualStudio8Generator::WriteProjectConfigurations(
  206. std::ostream& fout, const std::string& name, cmGeneratorTarget const& target,
  207. std::vector<std::string> const& configs,
  208. const std::set<std::string>& configsPartOfDefaultBuild,
  209. std::string const& platformMapping)
  210. {
  211. std::string guid = this->GetGUID(name);
  212. for (std::string const& i : configs) {
  213. std::vector<std::string> mapConfig;
  214. const char* dstConfig = i.c_str();
  215. if (target.GetProperty("EXTERNAL_MSPROJECT")) {
  216. if (const char* m = target.GetProperty("MAP_IMPORTED_CONFIG_" +
  217. cmSystemTools::UpperCase(i))) {
  218. cmExpandList(m, mapConfig);
  219. if (!mapConfig.empty()) {
  220. dstConfig = mapConfig[0].c_str();
  221. }
  222. }
  223. }
  224. fout << "\t\t{" << guid << "}." << i << "|" << this->GetPlatformName()
  225. << ".ActiveCfg = " << dstConfig << "|"
  226. << (!platformMapping.empty() ? platformMapping
  227. : this->GetPlatformName())
  228. << "\n";
  229. std::set<std::string>::const_iterator ci =
  230. configsPartOfDefaultBuild.find(i);
  231. if (!(ci == configsPartOfDefaultBuild.end())) {
  232. fout << "\t\t{" << guid << "}." << i << "|" << this->GetPlatformName()
  233. << ".Build.0 = " << dstConfig << "|"
  234. << (!platformMapping.empty() ? platformMapping
  235. : this->GetPlatformName())
  236. << "\n";
  237. }
  238. if (this->NeedsDeploy(target, dstConfig)) {
  239. fout << "\t\t{" << guid << "}." << i << "|" << this->GetPlatformName()
  240. << ".Deploy.0 = " << dstConfig << "|"
  241. << (!platformMapping.empty() ? platformMapping
  242. : this->GetPlatformName())
  243. << "\n";
  244. }
  245. }
  246. }
  247. bool cmGlobalVisualStudio8Generator::NeedsDeploy(
  248. cmGeneratorTarget const& target, const char* config) const
  249. {
  250. cmStateEnums::TargetType type = target.GetType();
  251. bool noDeploy = DeployInhibited(target, config);
  252. return !noDeploy &&
  253. (type == cmStateEnums::EXECUTABLE ||
  254. type == cmStateEnums::SHARED_LIBRARY) &&
  255. this->TargetSystemSupportsDeployment();
  256. }
  257. bool cmGlobalVisualStudio8Generator::DeployInhibited(
  258. cmGeneratorTarget const& target, const char* config) const
  259. {
  260. bool rVal = false;
  261. if (const char* prop = target.GetProperty("VS_NO_SOLUTION_DEPLOY")) {
  262. rVal = cmIsOn(
  263. cmGeneratorExpression::Evaluate(prop, target.LocalGenerator, config));
  264. }
  265. return rVal;
  266. }
  267. bool cmGlobalVisualStudio8Generator::TargetSystemSupportsDeployment() const
  268. {
  269. return this->TargetsWindowsCE();
  270. }
  271. bool cmGlobalVisualStudio8Generator::ComputeTargetDepends()
  272. {
  273. // Skip over the cmGlobalVisualStudioGenerator implementation!
  274. // We do not need the support that VS <= 7.1 needs.
  275. return this->cmGlobalGenerator::ComputeTargetDepends();
  276. }
  277. void cmGlobalVisualStudio8Generator::WriteProjectDepends(
  278. std::ostream& fout, const std::string&, const char*,
  279. cmGeneratorTarget const* gt)
  280. {
  281. TargetDependSet const& unordered = this->GetTargetDirectDepends(gt);
  282. OrderedTargetDependSet depends(unordered, std::string());
  283. for (cmTargetDepend const& i : depends) {
  284. if (i->GetType() == cmStateEnums::INTERFACE_LIBRARY) {
  285. continue;
  286. }
  287. std::string guid = this->GetGUID(i->GetName());
  288. fout << "\t\t{" << guid << "} = {" << guid << "}\n";
  289. }
  290. }
  291. bool cmGlobalVisualStudio8Generator::NeedLinkLibraryDependencies(
  292. cmGeneratorTarget* target)
  293. {
  294. // Look for utility dependencies that magically link.
  295. for (BT<std::string> const& ui : target->GetUtilities()) {
  296. if (cmGeneratorTarget* depTarget =
  297. target->GetLocalGenerator()->FindGeneratorTargetToUse(ui.Value)) {
  298. if (depTarget->GetType() != cmStateEnums::INTERFACE_LIBRARY &&
  299. depTarget->GetProperty("EXTERNAL_MSPROJECT")) {
  300. // This utility dependency names an external .vcproj target.
  301. // We use LinkLibraryDependencies="true" to link to it without
  302. // predicting the .lib file location or name.
  303. return true;
  304. }
  305. }
  306. }
  307. return false;
  308. }
  309. static cmVS7FlagTable cmVS8ExtraFlagTable[] = {
  310. { "CallingConvention", "Gd", "cdecl", "0", 0 },
  311. { "CallingConvention", "Gr", "fastcall", "1", 0 },
  312. { "CallingConvention", "Gz", "stdcall", "2", 0 },
  313. { "Detect64BitPortabilityProblems", "Wp64",
  314. "Detect 64Bit Portability Problems", "true", 0 },
  315. { "ErrorReporting", "errorReport:prompt", "Report immediately", "1", 0 },
  316. { "ErrorReporting", "errorReport:queue", "Queue for next login", "2", 0 },
  317. // Precompiled header and related options. Note that the
  318. // UsePrecompiledHeader entries are marked as "Continue" so that the
  319. // corresponding PrecompiledHeaderThrough entry can be found.
  320. { "UsePrecompiledHeader", "Yu", "Use Precompiled Header", "2",
  321. cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue },
  322. { "PrecompiledHeaderThrough", "Yu", "Precompiled Header Name", "",
  323. cmVS7FlagTable::UserValueRequired },
  324. // There is no YX option in the VS8 IDE.
  325. // Exception handling mode. If no entries match, it will be FALSE.
  326. { "ExceptionHandling", "GX", "enable c++ exceptions", "1", 0 },
  327. { "ExceptionHandling", "EHsc", "enable c++ exceptions", "1", 0 },
  328. { "ExceptionHandling", "EHa", "enable SEH exceptions", "2", 0 },
  329. { "EnablePREfast", "analyze", "", "true", 0 },
  330. { "EnablePREfast", "analyze-", "", "false", 0 },
  331. // Language options
  332. { "TreatWChar_tAsBuiltInType", "Zc:wchar_t", "wchar_t is a built-in type",
  333. "true", 0 },
  334. { "TreatWChar_tAsBuiltInType", "Zc:wchar_t-",
  335. "wchar_t is not a built-in type", "false", 0 },
  336. { "", "", "", "", 0 }
  337. };
  338. cmIDEFlagTable const* cmGlobalVisualStudio8Generator::GetExtraFlagTableVS8()
  339. {
  340. return cmVS8ExtraFlagTable;
  341. }