cmGlobalVisualStudioGenerator.cxx 32 KB

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