cmGlobalVisualStudioGenerator.cxx 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #include "cmGlobalVisualStudioGenerator.h"
  11. #include "cmCallVisualStudioMacro.h"
  12. #include "cmGeneratedFileStream.h"
  13. #include "cmGeneratorTarget.h"
  14. #include "cmLocalVisualStudioGenerator.h"
  15. #include "cmMakefile.h"
  16. #include "cmSourceFile.h"
  17. #include "cmTarget.h"
  18. #include <cmsys/Encoding.hxx>
  19. #include "cmAlgorithms.h"
  20. //----------------------------------------------------------------------------
  21. cmGlobalVisualStudioGenerator::cmGlobalVisualStudioGenerator(cmake* cm)
  22. : cmGlobalGenerator(cm)
  23. {
  24. cm->GetState()->SetWindowsShell(true);
  25. cm->GetState()->SetWindowsVSIDE(true);
  26. }
  27. //----------------------------------------------------------------------------
  28. cmGlobalVisualStudioGenerator::~cmGlobalVisualStudioGenerator()
  29. {
  30. }
  31. //----------------------------------------------------------------------------
  32. cmGlobalVisualStudioGenerator::VSVersion
  33. cmGlobalVisualStudioGenerator::GetVersion() const
  34. {
  35. return this->Version;
  36. }
  37. //----------------------------------------------------------------------------
  38. void cmGlobalVisualStudioGenerator::SetVersion(VSVersion v)
  39. {
  40. this->Version = v;
  41. }
  42. //----------------------------------------------------------------------------
  43. std::string cmGlobalVisualStudioGenerator::GetRegistryBase()
  44. {
  45. return cmGlobalVisualStudioGenerator::GetRegistryBase(
  46. this->GetIDEVersion());
  47. }
  48. //----------------------------------------------------------------------------
  49. std::string cmGlobalVisualStudioGenerator::GetRegistryBase(
  50. const char* version)
  51. {
  52. std::string key = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\";
  53. return key + version;
  54. }
  55. //----------------------------------------------------------------------------
  56. bool cmGlobalVisualStudioGenerator::Compute()
  57. {
  58. if (!cmGlobalGenerator::Compute())
  59. {
  60. return false;
  61. }
  62. // Add a special target that depends on ALL projects for easy build
  63. // of one configuration only.
  64. const char* no_working_dir = 0;
  65. std::vector<std::string> no_depends;
  66. cmCustomCommandLines no_commands;
  67. std::map<std::string, std::vector<cmLocalGenerator*> >::iterator it;
  68. for(it = this->ProjectMap.begin(); it!= this->ProjectMap.end(); ++it)
  69. {
  70. std::vector<cmLocalGenerator*>& gen = it->second;
  71. // add the ALL_BUILD to the first local generator of each project
  72. if(gen.size())
  73. {
  74. // Use no actual command lines so that the target itself is not
  75. // considered always out of date.
  76. cmTarget* allBuild =
  77. gen[0]->GetMakefile()->
  78. AddUtilityCommand("ALL_BUILD", true, no_working_dir,
  79. no_depends, no_commands, false,
  80. "Build all projects");
  81. cmGeneratorTarget* gt = new cmGeneratorTarget(allBuild, gen[0]);
  82. allBuild->GetMakefile()->AddGeneratorTarget(allBuild, gt);
  83. #if 0
  84. // Can't activate this code because we want ALL_BUILD
  85. // selected as the default "startup project" when first
  86. // opened in Visual Studio... And if it's nested in a
  87. // folder, then that doesn't happen.
  88. //
  89. // Organize in the "predefined targets" folder:
  90. //
  91. if (this->UseFolderProperty())
  92. {
  93. allBuild->SetProperty("FOLDER", this->GetPredefinedTargetsFolder());
  94. }
  95. #endif
  96. // Now make all targets depend on the ALL_BUILD target
  97. for(std::vector<cmLocalGenerator*>::iterator i = gen.begin();
  98. i != gen.end(); ++i)
  99. {
  100. cmTargets& targets = (*i)->GetMakefile()->GetTargets();
  101. for(cmTargets::iterator t = targets.begin();
  102. t != targets.end(); ++t)
  103. {
  104. if (t->second.GetType() == cmTarget::GLOBAL_TARGET)
  105. {
  106. continue;
  107. }
  108. if(!this->IsExcluded(gen[0], t->second))
  109. {
  110. allBuild->AddUtility(t->second.GetName());
  111. }
  112. }
  113. }
  114. }
  115. }
  116. // Configure CMake Visual Studio macros, for this user on this version
  117. // of Visual Studio.
  118. this->ConfigureCMakeVisualStudioMacros();
  119. // Add CMakeLists.txt with custom command to rerun CMake.
  120. for(std::vector<cmLocalGenerator*>::const_iterator
  121. lgi = this->LocalGenerators.begin();
  122. lgi != this->LocalGenerators.end(); ++lgi)
  123. {
  124. cmLocalVisualStudioGenerator* lg =
  125. static_cast<cmLocalVisualStudioGenerator*>(*lgi);
  126. lg->AddCMakeListsRules();
  127. }
  128. return true;
  129. }
  130. //----------------------------------------------------------------------------
  131. void cmGlobalVisualStudioGenerator
  132. ::ComputeTargetObjectDirectory(cmGeneratorTarget* gt) const
  133. {
  134. std::string dir = gt->Makefile->GetCurrentBinaryDirectory();
  135. dir += "/";
  136. std::string tgtDir = gt->LocalGenerator->GetTargetDirectory(*gt->Target);
  137. if(!tgtDir.empty())
  138. {
  139. dir += tgtDir;
  140. dir += "/";
  141. }
  142. const char* cd = this->GetCMakeCFGIntDir();
  143. if(cd && *cd)
  144. {
  145. dir += cd;
  146. dir += "/";
  147. }
  148. gt->ObjectDirectory = dir;
  149. }
  150. //----------------------------------------------------------------------------
  151. bool IsVisualStudioMacrosFileRegistered(const std::string& macrosFile,
  152. const std::string& regKeyBase,
  153. std::string& nextAvailableSubKeyName);
  154. void RegisterVisualStudioMacros(const std::string& macrosFile,
  155. const std::string& regKeyBase);
  156. //----------------------------------------------------------------------------
  157. #define CMAKE_VSMACROS_FILENAME \
  158. "CMakeVSMacros2.vsmacros"
  159. #define CMAKE_VSMACROS_RELOAD_MACRONAME \
  160. "Macros.CMakeVSMacros2.Macros.ReloadProjects"
  161. #define CMAKE_VSMACROS_STOP_MACRONAME \
  162. "Macros.CMakeVSMacros2.Macros.StopBuild"
  163. //----------------------------------------------------------------------------
  164. void cmGlobalVisualStudioGenerator::ConfigureCMakeVisualStudioMacros()
  165. {
  166. cmMakefile* mf = this->LocalGenerators[0]->GetMakefile();
  167. std::string dir = this->GetUserMacrosDirectory();
  168. if (mf != 0 && dir != "")
  169. {
  170. std::string src = mf->GetRequiredDefinition("CMAKE_ROOT");
  171. src += "/Templates/" CMAKE_VSMACROS_FILENAME;
  172. std::string dst = dir + "/CMakeMacros/" CMAKE_VSMACROS_FILENAME;
  173. // Copy the macros file to the user directory only if the
  174. // destination does not exist or the source location is newer.
  175. // This will allow the user to edit the macros for development
  176. // purposes but newer versions distributed with CMake will replace
  177. // older versions in user directories.
  178. int res;
  179. if(!cmSystemTools::FileTimeCompare(src.c_str(), dst.c_str(), &res) ||
  180. res > 0)
  181. {
  182. if (!cmSystemTools::CopyFileAlways(src.c_str(), dst.c_str()))
  183. {
  184. std::ostringstream oss;
  185. oss << "Could not copy from: " << src << std::endl;
  186. oss << " to: " << dst << std::endl;
  187. cmSystemTools::Message(oss.str().c_str(), "Warning");
  188. }
  189. }
  190. RegisterVisualStudioMacros(dst, this->GetUserMacrosRegKeyBase());
  191. }
  192. }
  193. //----------------------------------------------------------------------------
  194. void
  195. cmGlobalVisualStudioGenerator
  196. ::CallVisualStudioMacro(MacroName m,
  197. const char* vsSolutionFile)
  198. {
  199. // If any solution or project files changed during the generation,
  200. // tell Visual Studio to reload them...
  201. cmMakefile* mf = this->LocalGenerators[0]->GetMakefile();
  202. std::string dir = this->GetUserMacrosDirectory();
  203. // Only really try to call the macro if:
  204. // - mf is non-NULL
  205. // - there is a UserMacrosDirectory
  206. // - the CMake vsmacros file exists
  207. // - the CMake vsmacros file is registered
  208. // - there were .sln/.vcproj files changed during generation
  209. //
  210. if (mf != 0 && dir != "")
  211. {
  212. std::string macrosFile = dir + "/CMakeMacros/" CMAKE_VSMACROS_FILENAME;
  213. std::string nextSubkeyName;
  214. if (cmSystemTools::FileExists(macrosFile.c_str()) &&
  215. IsVisualStudioMacrosFileRegistered(macrosFile,
  216. this->GetUserMacrosRegKeyBase(), nextSubkeyName)
  217. )
  218. {
  219. std::string topLevelSlnName;
  220. if(vsSolutionFile)
  221. {
  222. topLevelSlnName = vsSolutionFile;
  223. }
  224. else
  225. {
  226. topLevelSlnName = mf->GetCurrentBinaryDirectory();
  227. topLevelSlnName += "/";
  228. topLevelSlnName += mf->GetProjectName();
  229. topLevelSlnName += ".sln";
  230. }
  231. if(m == MacroReload)
  232. {
  233. std::vector<std::string> filenames;
  234. this->GetFilesReplacedDuringGenerate(filenames);
  235. if (filenames.size() > 0)
  236. {
  237. // Convert vector to semi-colon delimited string of filenames:
  238. std::string projects;
  239. std::vector<std::string>::iterator it = filenames.begin();
  240. if (it != filenames.end())
  241. {
  242. projects = *it;
  243. ++it;
  244. }
  245. for (; it != filenames.end(); ++it)
  246. {
  247. projects += ";";
  248. projects += *it;
  249. }
  250. cmCallVisualStudioMacro::CallMacro(topLevelSlnName,
  251. CMAKE_VSMACROS_RELOAD_MACRONAME, projects,
  252. this->GetCMakeInstance()->GetDebugOutput());
  253. }
  254. }
  255. else if(m == MacroStop)
  256. {
  257. cmCallVisualStudioMacro::CallMacro(topLevelSlnName,
  258. CMAKE_VSMACROS_STOP_MACRONAME, "",
  259. this->GetCMakeInstance()->GetDebugOutput());
  260. }
  261. }
  262. }
  263. }
  264. //----------------------------------------------------------------------------
  265. std::string cmGlobalVisualStudioGenerator::GetUserMacrosDirectory()
  266. {
  267. return "";
  268. }
  269. //----------------------------------------------------------------------------
  270. std::string cmGlobalVisualStudioGenerator::GetUserMacrosRegKeyBase()
  271. {
  272. return "";
  273. }
  274. //----------------------------------------------------------------------------
  275. void cmGlobalVisualStudioGenerator::FillLinkClosure(cmTarget const* target,
  276. TargetSet& linked)
  277. {
  278. if(linked.insert(target).second)
  279. {
  280. cmGeneratorTarget* gt = this->GetGeneratorTarget(target);
  281. TargetDependSet const& depends = this->GetTargetDirectDepends(gt);
  282. for(TargetDependSet::const_iterator di = depends.begin();
  283. di != depends.end(); ++di)
  284. {
  285. if(di->IsLink())
  286. {
  287. this->FillLinkClosure((*di)->Target, linked);
  288. }
  289. }
  290. }
  291. }
  292. //----------------------------------------------------------------------------
  293. cmGlobalVisualStudioGenerator::TargetSet const&
  294. cmGlobalVisualStudioGenerator::GetTargetLinkClosure(cmTarget* target)
  295. {
  296. TargetSetMap::iterator i = this->TargetLinkClosure.find(target);
  297. if(i == this->TargetLinkClosure.end())
  298. {
  299. TargetSetMap::value_type entry(target, TargetSet());
  300. i = this->TargetLinkClosure.insert(entry).first;
  301. this->FillLinkClosure(target, i->second);
  302. }
  303. return i->second;
  304. }
  305. //----------------------------------------------------------------------------
  306. void cmGlobalVisualStudioGenerator::FollowLinkDepends(
  307. cmTarget const* target, std::set<cmTarget const*>& linked)
  308. {
  309. if(target->GetType() == cmTarget::INTERFACE_LIBRARY)
  310. {
  311. return;
  312. }
  313. if(linked.insert(target).second &&
  314. target->GetType() == cmTarget::STATIC_LIBRARY)
  315. {
  316. // Static library targets do not list their link dependencies so
  317. // we must follow them transitively now.
  318. cmGeneratorTarget* gt = this->GetGeneratorTarget(target);
  319. TargetDependSet const& depends = this->GetTargetDirectDepends(gt);
  320. for(TargetDependSet::const_iterator di = depends.begin();
  321. di != depends.end(); ++di)
  322. {
  323. if(di->IsLink())
  324. {
  325. this->FollowLinkDepends((*di)->Target, linked);
  326. }
  327. }
  328. }
  329. }
  330. //----------------------------------------------------------------------------
  331. bool cmGlobalVisualStudioGenerator::ComputeTargetDepends()
  332. {
  333. if(!this->cmGlobalGenerator::ComputeTargetDepends())
  334. {
  335. return false;
  336. }
  337. std::map<std::string, std::vector<cmLocalGenerator*> >::iterator it;
  338. for(it = this->ProjectMap.begin(); it!= this->ProjectMap.end(); ++it)
  339. {
  340. std::vector<cmLocalGenerator*>& gen = it->second;
  341. for(std::vector<cmLocalGenerator*>::iterator i = gen.begin();
  342. i != gen.end(); ++i)
  343. {
  344. cmTargets& targets = (*i)->GetMakefile()->GetTargets();
  345. for(cmTargets::iterator ti = targets.begin();
  346. ti != targets.end(); ++ti)
  347. {
  348. this->ComputeVSTargetDepends(ti->second);
  349. }
  350. }
  351. }
  352. return true;
  353. }
  354. //----------------------------------------------------------------------------
  355. static bool VSLinkable(cmTarget const* t)
  356. {
  357. return t->IsLinkable() || t->GetType() == cmTarget::OBJECT_LIBRARY;
  358. }
  359. //----------------------------------------------------------------------------
  360. void cmGlobalVisualStudioGenerator::ComputeVSTargetDepends(cmTarget& target)
  361. {
  362. if(this->VSTargetDepends.find(&target) != this->VSTargetDepends.end())
  363. {
  364. return;
  365. }
  366. VSDependSet& vsTargetDepend = this->VSTargetDepends[&target];
  367. // VS <= 7.1 has two behaviors that affect solution dependencies.
  368. //
  369. // (1) Solution-level dependencies between a linkable target and a
  370. // library cause that library to be linked. We use an intermedite
  371. // empty utility target to express the dependency. (VS 8 and above
  372. // provide a project file "LinkLibraryDependencies" setting to
  373. // choose whether to activate this behavior. We disable it except
  374. // when linking external project files.)
  375. //
  376. // (2) We cannot let static libraries depend directly on targets to
  377. // which they "link" because the librarian tool will copy the
  378. // targets into the static library. While the work-around for
  379. // behavior (1) would also avoid this, it would create a large
  380. // number of extra utility targets for little gain. Instead, use
  381. // the above work-around only for dependencies explicitly added by
  382. // the add_dependencies() command. Approximate link dependencies by
  383. // leaving them out for the static library itself but following them
  384. // transitively for other targets.
  385. bool allowLinkable = (target.GetType() != cmTarget::STATIC_LIBRARY &&
  386. target.GetType() != cmTarget::SHARED_LIBRARY &&
  387. target.GetType() != cmTarget::MODULE_LIBRARY &&
  388. target.GetType() != cmTarget::EXECUTABLE);
  389. cmGeneratorTarget* gt = this->GetGeneratorTarget(&target);
  390. TargetDependSet const& depends = this->GetTargetDirectDepends(gt);
  391. // Collect implicit link dependencies (target_link_libraries).
  392. // Static libraries cannot depend on their link implementation
  393. // due to behavior (2), but they do not really need to.
  394. std::set<cmTarget const*> linkDepends;
  395. if(target.GetType() != cmTarget::STATIC_LIBRARY)
  396. {
  397. for(TargetDependSet::const_iterator di = depends.begin();
  398. di != depends.end(); ++di)
  399. {
  400. cmTargetDepend dep = *di;
  401. if(dep.IsLink())
  402. {
  403. this->FollowLinkDepends(dep->Target, linkDepends);
  404. }
  405. }
  406. }
  407. // Collect explicit util dependencies (add_dependencies).
  408. std::set<cmTarget const*> utilDepends;
  409. for(TargetDependSet::const_iterator di = depends.begin();
  410. di != depends.end(); ++di)
  411. {
  412. cmTargetDepend dep = *di;
  413. if(dep.IsUtil())
  414. {
  415. this->FollowLinkDepends(dep->Target, utilDepends);
  416. }
  417. }
  418. // Collect all targets linked by this target so we can avoid
  419. // intermediate targets below.
  420. TargetSet linked;
  421. if(target.GetType() != cmTarget::STATIC_LIBRARY)
  422. {
  423. linked = this->GetTargetLinkClosure(&target);
  424. }
  425. // Emit link dependencies.
  426. for(std::set<cmTarget const*>::iterator di = linkDepends.begin();
  427. di != linkDepends.end(); ++di)
  428. {
  429. cmTarget const* dep = *di;
  430. vsTargetDepend.insert(dep->GetName());
  431. }
  432. // Emit util dependencies. Possibly use intermediate targets.
  433. for(std::set<cmTarget const*>::iterator di = utilDepends.begin();
  434. di != utilDepends.end(); ++di)
  435. {
  436. cmTarget const* dep = *di;
  437. if(allowLinkable || !VSLinkable(dep) || linked.count(dep))
  438. {
  439. // Direct dependency allowed.
  440. vsTargetDepend.insert(dep->GetName());
  441. }
  442. else
  443. {
  444. // Direct dependency on linkable target not allowed.
  445. // Use an intermediate utility target.
  446. vsTargetDepend.insert(this->GetUtilityDepend(dep));
  447. }
  448. }
  449. }
  450. //----------------------------------------------------------------------------
  451. void cmGlobalVisualStudioGenerator::FindMakeProgram(cmMakefile* mf)
  452. {
  453. // Visual Studio generators know how to lookup their build tool
  454. // directly instead of needing a helper module to do it, so we
  455. // do not actually need to put CMAKE_MAKE_PROGRAM into the cache.
  456. if(cmSystemTools::IsOff(mf->GetDefinition("CMAKE_MAKE_PROGRAM")))
  457. {
  458. mf->AddDefinition("CMAKE_MAKE_PROGRAM",
  459. this->GetVSMakeProgram().c_str());
  460. }
  461. }
  462. //----------------------------------------------------------------------------
  463. std::string
  464. cmGlobalVisualStudioGenerator::GetUtilityDepend(cmTarget const* target)
  465. {
  466. UtilityDependsMap::iterator i = this->UtilityDepends.find(target);
  467. if(i == this->UtilityDepends.end())
  468. {
  469. std::string name = this->WriteUtilityDepend(target);
  470. UtilityDependsMap::value_type entry(target, name);
  471. i = this->UtilityDepends.insert(entry).first;
  472. }
  473. return i->second;
  474. }
  475. //----------------------------------------------------------------------------
  476. #include <windows.h>
  477. //----------------------------------------------------------------------------
  478. bool IsVisualStudioMacrosFileRegistered(const std::string& macrosFile,
  479. const std::string& regKeyBase,
  480. std::string& nextAvailableSubKeyName)
  481. {
  482. bool macrosRegistered = false;
  483. std::string s1;
  484. std::string s2;
  485. // Make lowercase local copies, convert to Unix slashes, and
  486. // see if the resulting strings are the same:
  487. s1 = cmSystemTools::LowerCase(macrosFile);
  488. cmSystemTools::ConvertToUnixSlashes(s1);
  489. std::string keyname;
  490. HKEY hkey = NULL;
  491. LONG result = ERROR_SUCCESS;
  492. DWORD index = 0;
  493. keyname = regKeyBase + "\\OtherProjects7";
  494. hkey = NULL;
  495. result = RegOpenKeyExW(HKEY_CURRENT_USER,
  496. cmsys::Encoding::ToWide(keyname).c_str(),
  497. 0, KEY_READ, &hkey);
  498. if (ERROR_SUCCESS == result)
  499. {
  500. // Iterate the subkeys and look for the values of interest in each subkey:
  501. wchar_t subkeyname[256];
  502. DWORD cch_subkeyname = sizeof(subkeyname)*sizeof(subkeyname[0]);
  503. wchar_t keyclass[256];
  504. DWORD cch_keyclass = sizeof(keyclass)*sizeof(keyclass[0]);
  505. FILETIME lastWriteTime;
  506. lastWriteTime.dwHighDateTime = 0;
  507. lastWriteTime.dwLowDateTime = 0;
  508. while (ERROR_SUCCESS == RegEnumKeyExW(hkey, index, subkeyname,
  509. &cch_subkeyname,
  510. 0, keyclass, &cch_keyclass, &lastWriteTime))
  511. {
  512. // Open the subkey and query the values of interest:
  513. HKEY hsubkey = NULL;
  514. result = RegOpenKeyExW(hkey, subkeyname, 0, KEY_READ, &hsubkey);
  515. if (ERROR_SUCCESS == result)
  516. {
  517. DWORD valueType = REG_SZ;
  518. wchar_t data1[256];
  519. DWORD cch_data1 = sizeof(data1)*sizeof(data1[0]);
  520. RegQueryValueExW(hsubkey, L"Path", 0, &valueType,
  521. (LPBYTE) &data1[0], &cch_data1);
  522. DWORD data2 = 0;
  523. DWORD cch_data2 = sizeof(data2);
  524. RegQueryValueExW(hsubkey, L"Security", 0, &valueType,
  525. (LPBYTE) &data2, &cch_data2);
  526. DWORD data3 = 0;
  527. DWORD cch_data3 = sizeof(data3);
  528. RegQueryValueExW(hsubkey, L"StorageFormat", 0, &valueType,
  529. (LPBYTE) &data3, &cch_data3);
  530. s2 = cmSystemTools::LowerCase(cmsys::Encoding::ToNarrow(data1));
  531. cmSystemTools::ConvertToUnixSlashes(s2);
  532. if (s2 == s1)
  533. {
  534. macrosRegistered = true;
  535. }
  536. std::string fullname = cmsys::Encoding::ToNarrow(data1);
  537. std::string filename;
  538. std::string filepath;
  539. std::string filepathname;
  540. std::string filepathpath;
  541. if (cmSystemTools::FileExists(fullname.c_str()))
  542. {
  543. filename = cmSystemTools::GetFilenameName(fullname);
  544. filepath = cmSystemTools::GetFilenamePath(fullname);
  545. filepathname = cmSystemTools::GetFilenameName(filepath);
  546. filepathpath = cmSystemTools::GetFilenamePath(filepath);
  547. }
  548. //std::cout << keyname << "\\" << subkeyname << ":" << std::endl;
  549. //std::cout << " Path: " << data1 << std::endl;
  550. //std::cout << " Security: " << data2 << std::endl;
  551. //std::cout << " StorageFormat: " << data3 << std::endl;
  552. //std::cout << " filename: " << filename << std::endl;
  553. //std::cout << " filepath: " << filepath << std::endl;
  554. //std::cout << " filepathname: " << filepathname << std::endl;
  555. //std::cout << " filepathpath: " << filepathpath << std::endl;
  556. //std::cout << std::endl;
  557. RegCloseKey(hsubkey);
  558. }
  559. else
  560. {
  561. std::cout << "error opening subkey: " << subkeyname << std::endl;
  562. std::cout << std::endl;
  563. }
  564. ++index;
  565. cch_subkeyname = sizeof(subkeyname)*sizeof(subkeyname[0]);
  566. cch_keyclass = sizeof(keyclass)*sizeof(keyclass[0]);
  567. lastWriteTime.dwHighDateTime = 0;
  568. lastWriteTime.dwLowDateTime = 0;
  569. }
  570. RegCloseKey(hkey);
  571. }
  572. else
  573. {
  574. std::cout << "error opening key: " << keyname << std::endl;
  575. std::cout << std::endl;
  576. }
  577. // Pass back next available sub key name, assuming sub keys always
  578. // follow the expected naming scheme. Expected naming scheme is that
  579. // the subkeys of OtherProjects7 is 0 to n-1, so it's ok to use "n"
  580. // as the name of the next subkey.
  581. std::ostringstream ossNext;
  582. ossNext << index;
  583. nextAvailableSubKeyName = ossNext.str();
  584. keyname = regKeyBase + "\\RecordingProject7";
  585. hkey = NULL;
  586. result = RegOpenKeyExW(HKEY_CURRENT_USER,
  587. cmsys::Encoding::ToWide(keyname).c_str(),
  588. 0, KEY_READ, &hkey);
  589. if (ERROR_SUCCESS == result)
  590. {
  591. DWORD valueType = REG_SZ;
  592. wchar_t data1[256];
  593. DWORD cch_data1 = sizeof(data1)*sizeof(data1[0]);
  594. RegQueryValueExW(hkey, L"Path", 0, &valueType,
  595. (LPBYTE) &data1[0], &cch_data1);
  596. DWORD data2 = 0;
  597. DWORD cch_data2 = sizeof(data2);
  598. RegQueryValueExW(hkey, L"Security", 0, &valueType,
  599. (LPBYTE) &data2, &cch_data2);
  600. DWORD data3 = 0;
  601. DWORD cch_data3 = sizeof(data3);
  602. RegQueryValueExW(hkey, L"StorageFormat", 0, &valueType,
  603. (LPBYTE) &data3, &cch_data3);
  604. s2 = cmSystemTools::LowerCase(cmsys::Encoding::ToNarrow(data1));
  605. cmSystemTools::ConvertToUnixSlashes(s2);
  606. if (s2 == s1)
  607. {
  608. macrosRegistered = true;
  609. }
  610. //std::cout << keyname << ":" << std::endl;
  611. //std::cout << " Path: " << data1 << std::endl;
  612. //std::cout << " Security: " << data2 << std::endl;
  613. //std::cout << " StorageFormat: " << data3 << std::endl;
  614. //std::cout << std::endl;
  615. RegCloseKey(hkey);
  616. }
  617. else
  618. {
  619. std::cout << "error opening key: " << keyname << std::endl;
  620. std::cout << std::endl;
  621. }
  622. return macrosRegistered;
  623. }
  624. //----------------------------------------------------------------------------
  625. void WriteVSMacrosFileRegistryEntry(
  626. const std::string& nextAvailableSubKeyName,
  627. const std::string& macrosFile,
  628. const std::string& regKeyBase)
  629. {
  630. std::string keyname = regKeyBase + "\\OtherProjects7";
  631. HKEY hkey = NULL;
  632. LONG result = RegOpenKeyExW(HKEY_CURRENT_USER,
  633. cmsys::Encoding::ToWide(keyname).c_str(), 0,
  634. KEY_READ|KEY_WRITE, &hkey);
  635. if (ERROR_SUCCESS == result)
  636. {
  637. // Create the subkey and set the values of interest:
  638. HKEY hsubkey = NULL;
  639. wchar_t lpClass[] = L"";
  640. result = RegCreateKeyExW(hkey,
  641. cmsys::Encoding::ToWide(nextAvailableSubKeyName).c_str(), 0,
  642. lpClass, 0, KEY_READ|KEY_WRITE, 0, &hsubkey, 0);
  643. if (ERROR_SUCCESS == result)
  644. {
  645. DWORD dw = 0;
  646. std::string s(macrosFile);
  647. cmSystemTools::ReplaceString(s, "/", "\\");
  648. std::wstring ws = cmsys::Encoding::ToWide(s);
  649. result = RegSetValueExW(hsubkey, L"Path", 0, REG_SZ, (LPBYTE)ws.c_str(),
  650. static_cast<DWORD>(ws.size() + 1)*sizeof(wchar_t));
  651. if (ERROR_SUCCESS != result)
  652. {
  653. std::cout << "error result 1: " << result << std::endl;
  654. std::cout << std::endl;
  655. }
  656. // Security value is always "1" for sample macros files (seems to be "2"
  657. // if you put the file somewhere outside the standard VSMacros folder)
  658. dw = 1;
  659. result = RegSetValueExW(hsubkey, L"Security",
  660. 0, REG_DWORD, (LPBYTE) &dw, sizeof(DWORD));
  661. if (ERROR_SUCCESS != result)
  662. {
  663. std::cout << "error result 2: " << result << std::endl;
  664. std::cout << std::endl;
  665. }
  666. // StorageFormat value is always "0" for sample macros files
  667. dw = 0;
  668. result = RegSetValueExW(hsubkey, L"StorageFormat",
  669. 0, REG_DWORD, (LPBYTE) &dw, sizeof(DWORD));
  670. if (ERROR_SUCCESS != result)
  671. {
  672. std::cout << "error result 3: " << result << std::endl;
  673. std::cout << std::endl;
  674. }
  675. RegCloseKey(hsubkey);
  676. }
  677. else
  678. {
  679. std::cout << "error creating subkey: "
  680. << nextAvailableSubKeyName << std::endl;
  681. std::cout << std::endl;
  682. }
  683. RegCloseKey(hkey);
  684. }
  685. else
  686. {
  687. std::cout << "error opening key: " << keyname << std::endl;
  688. std::cout << std::endl;
  689. }
  690. }
  691. //----------------------------------------------------------------------------
  692. void RegisterVisualStudioMacros(const std::string& macrosFile,
  693. const std::string& regKeyBase)
  694. {
  695. bool macrosRegistered;
  696. std::string nextAvailableSubKeyName;
  697. macrosRegistered = IsVisualStudioMacrosFileRegistered(macrosFile,
  698. regKeyBase, nextAvailableSubKeyName);
  699. if (!macrosRegistered)
  700. {
  701. int count = cmCallVisualStudioMacro::
  702. GetNumberOfRunningVisualStudioInstances("ALL");
  703. // Only register the macros file if there are *no* instances of Visual
  704. // Studio running. If we register it while one is running, first, it has
  705. // no effect on the running instance; second, and worse, Visual Studio
  706. // removes our newly added registration entry when it quits. Instead,
  707. // emit a warning asking the user to exit all running Visual Studio
  708. // instances...
  709. //
  710. if (0 != count)
  711. {
  712. std::ostringstream oss;
  713. oss << "Could not register CMake's Visual Studio macros file '"
  714. << CMAKE_VSMACROS_FILENAME "' while Visual Studio is running."
  715. << " Please exit all running instances of Visual Studio before"
  716. << " continuing." << std::endl
  717. << std::endl
  718. << "CMake needs to register Visual Studio macros when its macros"
  719. << " file is updated or when it detects that its current macros file"
  720. << " is no longer registered with Visual Studio."
  721. << std::endl;
  722. cmSystemTools::Message(oss.str().c_str(), "Warning");
  723. // Count them again now that the warning is over. In the case of a GUI
  724. // warning, the user may have gone to close Visual Studio and then come
  725. // back to the CMake GUI and clicked ok on the above warning. If so,
  726. // then register the macros *now* if the count is *now* 0...
  727. //
  728. count = cmCallVisualStudioMacro::
  729. GetNumberOfRunningVisualStudioInstances("ALL");
  730. // Also re-get the nextAvailableSubKeyName in case Visual Studio
  731. // wrote out new registered macros information as it was exiting:
  732. //
  733. if (0 == count)
  734. {
  735. IsVisualStudioMacrosFileRegistered(macrosFile, regKeyBase,
  736. nextAvailableSubKeyName);
  737. }
  738. }
  739. // Do another if check - 'count' may have changed inside the above if:
  740. //
  741. if (0 == count)
  742. {
  743. WriteVSMacrosFileRegistryEntry(nextAvailableSubKeyName, macrosFile,
  744. regKeyBase);
  745. }
  746. }
  747. }
  748. bool
  749. cmGlobalVisualStudioGenerator::TargetIsFortranOnly(cmTarget const& target)
  750. {
  751. // check to see if this is a fortran build
  752. std::set<std::string> languages;
  753. {
  754. // Issue diagnostic if the source files depend on the config.
  755. std::vector<cmSourceFile*> sources;
  756. if (!target.GetConfigCommonSourceFiles(sources))
  757. {
  758. return false;
  759. }
  760. }
  761. target.GetLanguages(languages, "");
  762. if(languages.size() == 1)
  763. {
  764. if(*languages.begin() == "Fortran")
  765. {
  766. return true;
  767. }
  768. }
  769. return false;
  770. }
  771. //----------------------------------------------------------------------------
  772. bool
  773. cmGlobalVisualStudioGenerator::TargetCompare
  774. ::operator()(cmGeneratorTarget const* l, cmGeneratorTarget const* r) const
  775. {
  776. // Make sure ALL_BUILD is first so it is the default active project.
  777. if(r->GetName() == "ALL_BUILD")
  778. {
  779. return false;
  780. }
  781. if(l->GetName() == "ALL_BUILD")
  782. {
  783. return true;
  784. }
  785. return strcmp(l->GetName().c_str(), r->GetName().c_str()) < 0;
  786. }
  787. //----------------------------------------------------------------------------
  788. cmGlobalVisualStudioGenerator::OrderedTargetDependSet
  789. ::OrderedTargetDependSet(TargetDependSet const& targets)
  790. {
  791. this->insert(targets.begin(), targets.end());
  792. }
  793. //----------------------------------------------------------------------------
  794. cmGlobalVisualStudioGenerator::OrderedTargetDependSet
  795. ::OrderedTargetDependSet(TargetSet const& targets)
  796. {
  797. for (TargetSet::const_iterator it = targets.begin();
  798. it != targets.end(); ++it)
  799. {
  800. cmGeneratorTarget* gt =
  801. (*it)->GetMakefile()->GetGlobalGenerator()->GetGeneratorTarget(*it);
  802. this->insert(gt);
  803. }
  804. }
  805. std::string cmGlobalVisualStudioGenerator::ExpandCFGIntDir(
  806. const std::string& str,
  807. const std::string& config) const
  808. {
  809. std::string replace = GetCMakeCFGIntDir();
  810. std::string tmp = str;
  811. for(std::string::size_type i = tmp.find(replace);
  812. i != std::string::npos;
  813. i = tmp.find(replace, i))
  814. {
  815. tmp.replace(i, replace.size(), config);
  816. i += config.size();
  817. }
  818. return tmp;
  819. }
  820. void cmGlobalVisualStudioGenerator::AddSymbolExportCommand(
  821. cmGeneratorTarget* gt, std::vector<cmCustomCommand>& commands,
  822. std::string const& configName)
  823. {
  824. std::vector<std::string> outputs;
  825. std::string deffile = gt->ObjectDirectory;
  826. deffile += "/exportall.def";
  827. outputs.push_back(deffile);
  828. std::vector<std::string> empty;
  829. std::vector<cmSourceFile const*> objectSources;
  830. gt->GetObjectSources(objectSources, configName);
  831. std::map<cmSourceFile const*, std::string> mapping;
  832. for(std::vector<cmSourceFile const*>::const_iterator it
  833. = objectSources.begin(); it != objectSources.end(); ++it)
  834. {
  835. mapping[*it];
  836. }
  837. gt->LocalGenerator->
  838. ComputeObjectFilenames(mapping, gt);
  839. std::string obj_dir = gt->ObjectDirectory;
  840. std::string cmakeCommand = cmSystemTools::GetCMakeCommand();
  841. cmSystemTools::ConvertToWindowsExtendedPath(cmakeCommand);
  842. cmCustomCommandLine cmdl;
  843. cmdl.push_back(cmakeCommand);
  844. cmdl.push_back("-E");
  845. cmdl.push_back("__create_def");
  846. cmdl.push_back(deffile);
  847. std::string obj_dir_expanded = obj_dir;
  848. cmSystemTools::ReplaceString(obj_dir_expanded,
  849. this->GetCMakeCFGIntDir(),
  850. configName.c_str());
  851. std::string objs_file = obj_dir_expanded;
  852. cmSystemTools::MakeDirectory(objs_file.c_str());
  853. objs_file += "/objects.txt";
  854. cmdl.push_back(objs_file);
  855. cmGeneratedFileStream fout(objs_file.c_str());
  856. if(!fout)
  857. {
  858. cmSystemTools::Error("could not open ", objs_file.c_str());
  859. return;
  860. }
  861. for(std::vector<cmSourceFile const*>::const_iterator it
  862. = objectSources.begin(); it != objectSources.end(); ++it)
  863. {
  864. // Find the object file name corresponding to this source file.
  865. std::map<cmSourceFile const*, std::string>::const_iterator
  866. map_it = mapping.find(*it);
  867. // It must exist because we populated the mapping just above.
  868. assert(!map_it->second.empty());
  869. std::string objFile = obj_dir + map_it->second;
  870. // replace $(ConfigurationName) in the object names
  871. cmSystemTools::ReplaceString(objFile, this->GetCMakeCFGIntDir(),
  872. configName.c_str());
  873. if(cmHasLiteralSuffix(objFile, ".obj"))
  874. {
  875. fout << objFile << "\n";
  876. }
  877. }
  878. cmCustomCommandLines commandLines;
  879. commandLines.push_back(cmdl);
  880. cmCustomCommand command(gt->Target->GetMakefile(),
  881. outputs, empty, empty,
  882. commandLines,
  883. "Auto build dll exports",
  884. ".");
  885. commands.push_back(command);
  886. }