cmGlobalVisualStudio7Generator.cxx 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #include "windows.h" // this must be first to define GetCurrentDirectory
  14. #include "cmGlobalVisualStudio7Generator.h"
  15. #include "cmGeneratedFileStream.h"
  16. #include "cmLocalVisualStudio7Generator.h"
  17. #include "cmMakefile.h"
  18. #include "cmake.h"
  19. cmGlobalVisualStudio7Generator::cmGlobalVisualStudio7Generator()
  20. {
  21. this->FindMakeProgramFile = "CMakeVS7FindMake.cmake";
  22. }
  23. void cmGlobalVisualStudio7Generator
  24. ::EnableLanguage(std::vector<std::string>const & lang,
  25. cmMakefile *mf, bool optional)
  26. {
  27. mf->AddDefinition("CMAKE_GENERATOR_CC", "cl");
  28. mf->AddDefinition("CMAKE_GENERATOR_CXX", "cl");
  29. mf->AddDefinition("CMAKE_GENERATOR_RC", "rc");
  30. mf->AddDefinition("CMAKE_GENERATOR_NO_COMPILER_ENV", "1");
  31. mf->AddDefinition("CMAKE_GENERATOR_FC", "ifort");
  32. this->AddPlatformDefinitions(mf);
  33. // Create list of configurations requested by user's cache, if any.
  34. this->cmGlobalGenerator::EnableLanguage(lang, mf, optional);
  35. this->GenerateConfigurations(mf);
  36. // if this environment variable is set, then copy it to
  37. // a static cache entry. It will be used by
  38. // cmLocalGenerator::ConstructScript, to add an extra PATH
  39. // to all custom commands. This is because the VS IDE
  40. // does not use the environment it is run in, and this allows
  41. // for running commands and using dll's that the IDE environment
  42. // does not know about.
  43. const char* extraPath = cmSystemTools::GetEnv("CMAKE_MSVCIDE_RUN_PATH");
  44. if(extraPath)
  45. {
  46. mf->AddCacheDefinition
  47. ("CMAKE_MSVCIDE_RUN_PATH", extraPath,
  48. "Saved environment variable CMAKE_MSVCIDE_RUN_PATH",
  49. cmCacheManager::STATIC);
  50. }
  51. }
  52. void cmGlobalVisualStudio7Generator::AddPlatformDefinitions(cmMakefile* mf)
  53. {
  54. mf->AddDefinition("MSVC70", "1");
  55. }
  56. std::string cmGlobalVisualStudio7Generator
  57. ::GenerateBuildCommand(const char* makeProgram,
  58. const char *projectName,
  59. const char* additionalOptions, const char *targetName,
  60. const char* config, bool ignoreErrors, bool)
  61. {
  62. // Ingoring errors is not implemented in visual studio 6
  63. (void) ignoreErrors;
  64. // now build the test
  65. std::string makeCommand =
  66. cmSystemTools::ConvertToOutputPath(makeProgram);
  67. std::string lowerCaseCommand = makeCommand;
  68. cmSystemTools::LowerCase(lowerCaseCommand);
  69. // if there are spaces in the makeCommand, assume a full path
  70. // and convert it to a path with no spaces in it as the
  71. // RunSingleCommand does not like spaces
  72. #if defined(_WIN32) && !defined(__CYGWIN__)
  73. if(makeCommand.find(' ') != std::string::npos)
  74. {
  75. cmSystemTools::GetShortPath(makeCommand.c_str(), makeCommand);
  76. }
  77. #endif
  78. makeCommand += " ";
  79. makeCommand += projectName;
  80. makeCommand += ".sln ";
  81. bool clean = false;
  82. if ( targetName && strcmp(targetName, "clean") == 0 )
  83. {
  84. clean = true;
  85. targetName = "ALL_BUILD";
  86. }
  87. if(clean)
  88. {
  89. makeCommand += "/clean ";
  90. }
  91. else
  92. {
  93. makeCommand += "/build ";
  94. }
  95. if(config && strlen(config))
  96. {
  97. makeCommand += config;
  98. }
  99. else
  100. {
  101. makeCommand += "Debug";
  102. }
  103. makeCommand += " /project ";
  104. if (targetName && strlen(targetName))
  105. {
  106. makeCommand += targetName;
  107. }
  108. else
  109. {
  110. makeCommand += "ALL_BUILD";
  111. }
  112. if ( additionalOptions )
  113. {
  114. makeCommand += " ";
  115. makeCommand += additionalOptions;
  116. }
  117. return makeCommand;
  118. }
  119. ///! Create a local generator appropriate to this Global Generator
  120. cmLocalGenerator *cmGlobalVisualStudio7Generator::CreateLocalGenerator()
  121. {
  122. cmLocalVisualStudio7Generator *lg = new cmLocalVisualStudio7Generator;
  123. lg->SetExtraFlagTable(this->GetExtraFlagTableVS7());
  124. lg->SetGlobalGenerator(this);
  125. return lg;
  126. }
  127. void cmGlobalVisualStudio7Generator::GenerateConfigurations(cmMakefile* mf)
  128. {
  129. // process the configurations
  130. const char* ct
  131. = this->CMakeInstance->GetCacheDefinition("CMAKE_CONFIGURATION_TYPES");
  132. if ( ct )
  133. {
  134. std::vector<std::string> argsOut;
  135. cmSystemTools::ExpandListArgument(ct, argsOut);
  136. for(std::vector<std::string>::iterator i = argsOut.begin();
  137. i != argsOut.end(); ++i)
  138. {
  139. if(std::find(this->Configurations.begin(),
  140. this->Configurations.end(),
  141. *i) == this->Configurations.end())
  142. {
  143. this->Configurations.push_back(*i);
  144. }
  145. }
  146. }
  147. // default to at least Debug and Release
  148. if(this->Configurations.size() == 0)
  149. {
  150. this->Configurations.push_back("Debug");
  151. this->Configurations.push_back("Release");
  152. }
  153. // Reset the entry to have a semi-colon separated list.
  154. std::string configs = this->Configurations[0];
  155. for(unsigned int i=1; i < this->Configurations.size(); ++i)
  156. {
  157. configs += ";";
  158. configs += this->Configurations[i];
  159. }
  160. mf->AddCacheDefinition(
  161. "CMAKE_CONFIGURATION_TYPES",
  162. configs.c_str(),
  163. "Semicolon separated list of supported configuration types, "
  164. "only supports Debug, Release, MinSizeRel, and RelWithDebInfo, "
  165. "anything else will be ignored.",
  166. cmCacheManager::STRING);
  167. }
  168. void cmGlobalVisualStudio7Generator::Generate()
  169. {
  170. // first do the superclass method
  171. this->cmGlobalVisualStudioGenerator::Generate();
  172. // Now write out the DSW
  173. this->OutputSLNFile();
  174. // If any solution or project files changed during the generation,
  175. // tell Visual Studio to reload them...
  176. if(!cmSystemTools::GetErrorOccuredFlag())
  177. {
  178. this->CallVisualStudioMacro(MacroReload);
  179. }
  180. }
  181. void cmGlobalVisualStudio7Generator
  182. ::OutputSLNFile(cmLocalGenerator* root,
  183. std::vector<cmLocalGenerator*>& generators)
  184. {
  185. if(generators.size() == 0)
  186. {
  187. return;
  188. }
  189. this->CurrentProject = root->GetMakefile()->GetProjectName();
  190. std::string fname = root->GetMakefile()->GetStartOutputDirectory();
  191. fname += "/";
  192. fname += root->GetMakefile()->GetProjectName();
  193. fname += ".sln";
  194. cmGeneratedFileStream fout(fname.c_str());
  195. fout.SetCopyIfDifferent(true);
  196. if(!fout)
  197. {
  198. return;
  199. }
  200. this->WriteSLNFile(fout, root, generators);
  201. if (fout.Close())
  202. {
  203. this->FileReplacedDuringGenerate(fname);
  204. }
  205. }
  206. // output the SLN file
  207. void cmGlobalVisualStudio7Generator::OutputSLNFile()
  208. {
  209. std::map<cmStdString, std::vector<cmLocalGenerator*> >::iterator it;
  210. for(it = this->ProjectMap.begin(); it!= this->ProjectMap.end(); ++it)
  211. {
  212. this->OutputSLNFile(it->second[0], it->second);
  213. }
  214. }
  215. void cmGlobalVisualStudio7Generator::WriteTargetConfigurations(
  216. std::ostream& fout,
  217. cmLocalGenerator* root,
  218. OrderedTargetDependSet const& projectTargets)
  219. {
  220. // loop over again and write out configurations for each target
  221. // in the solution
  222. for(OrderedTargetDependSet::const_iterator tt =
  223. projectTargets.begin(); tt != projectTargets.end(); ++tt)
  224. {
  225. cmTarget* target = *tt;
  226. if (strncmp(target->GetName(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
  227. {
  228. cmCustomCommand cc = target->GetPostBuildCommands()[0];
  229. const cmCustomCommandLines& cmds = cc.GetCommandLines();
  230. std::string project = cmds[0][0];
  231. this->WriteProjectConfigurations(fout, project.c_str(),
  232. true);
  233. }
  234. else
  235. {
  236. bool partOfDefaultBuild = this->IsPartOfDefaultBuild(
  237. root->GetMakefile()->GetProjectName(), target);
  238. const char *vcprojName =
  239. target->GetProperty("GENERATOR_FILE_NAME");
  240. if (vcprojName)
  241. {
  242. this->WriteProjectConfigurations(fout, vcprojName,
  243. partOfDefaultBuild);
  244. }
  245. }
  246. }
  247. }
  248. void cmGlobalVisualStudio7Generator::WriteTargetsToSolution(
  249. std::ostream& fout,
  250. cmLocalGenerator* root,
  251. OrderedTargetDependSet const& projectTargets)
  252. {
  253. std::string rootdir = root->GetMakefile()->GetStartOutputDirectory();
  254. rootdir += "/";
  255. for(OrderedTargetDependSet::const_iterator tt =
  256. projectTargets.begin(); tt != projectTargets.end(); ++tt)
  257. {
  258. cmTarget* target = *tt;
  259. // handle external vc project files
  260. if (strncmp(target->GetName(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
  261. {
  262. cmCustomCommand cc = target->GetPostBuildCommands()[0];
  263. const cmCustomCommandLines& cmds = cc.GetCommandLines();
  264. std::string project = cmds[0][0];
  265. std::string location = cmds[0][1];
  266. this->WriteExternalProject(fout, project.c_str(),
  267. location.c_str(), cc.GetDepends());
  268. }
  269. else
  270. {
  271. bool skip = false;
  272. // if it is a global target or the check build system target
  273. // or the all_build target
  274. // then only use the one that is for the root
  275. if(target->GetType() == cmTarget::GLOBAL_TARGET
  276. || !strcmp(target->GetName(), CMAKE_CHECK_BUILD_SYSTEM_TARGET)
  277. || !strcmp(target->GetName(), this->GetAllTargetName()))
  278. {
  279. if(target->GetMakefile() != root->GetMakefile())
  280. {
  281. skip = true;
  282. }
  283. }
  284. // if not skipping the project then write it into the
  285. // solution
  286. if(!skip)
  287. {
  288. const char *vcprojName =
  289. target->GetProperty("GENERATOR_FILE_NAME");
  290. if(vcprojName)
  291. {
  292. cmMakefile* tmf = target->GetMakefile();
  293. std::string dir = tmf->GetStartOutputDirectory();
  294. dir = root->Convert(dir.c_str(),
  295. cmLocalGenerator::START_OUTPUT);
  296. this->WriteProject(fout, vcprojName, dir.c_str(),
  297. *target);
  298. }
  299. }
  300. }
  301. }
  302. }
  303. void cmGlobalVisualStudio7Generator::WriteTargetDepends(
  304. std::ostream& fout,
  305. OrderedTargetDependSet const& projectTargets
  306. )
  307. {
  308. for(OrderedTargetDependSet::const_iterator tt =
  309. projectTargets.begin(); tt != projectTargets.end(); ++tt)
  310. {
  311. cmTarget* target = *tt;
  312. cmMakefile* mf = target->GetMakefile();
  313. if (strncmp(target->GetName(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
  314. {
  315. cmCustomCommand cc = target->GetPostBuildCommands()[0];
  316. const cmCustomCommandLines& cmds = cc.GetCommandLines();
  317. std::string name = cmds[0][0];
  318. std::vector<std::string> depends = cc.GetDepends();
  319. std::vector<std::string>::iterator iter;
  320. int depcount = 0;
  321. for(iter = depends.begin(); iter != depends.end(); ++iter)
  322. {
  323. std::string guid = this->GetGUID(iter->c_str());
  324. if(guid.size() == 0)
  325. {
  326. std::string m = "Target: ";
  327. m += target->GetName();
  328. m += " depends on unknown target: ";
  329. m += iter->c_str();
  330. cmSystemTools::Error(m.c_str());
  331. }
  332. fout << "\t\t{" << this->GetGUID(name.c_str())
  333. << "}." << depcount << " = {" << guid.c_str() << "}\n";
  334. depcount++;
  335. }
  336. }
  337. else
  338. {
  339. const char *vcprojName =
  340. target->GetProperty("GENERATOR_FILE_NAME");
  341. if (vcprojName)
  342. {
  343. std::string dir = mf->GetStartDirectory();
  344. this->WriteProjectDepends(fout, vcprojName,
  345. dir.c_str(), *target);
  346. }
  347. }
  348. }
  349. }
  350. // Write a SLN file to the stream
  351. void cmGlobalVisualStudio7Generator
  352. ::WriteSLNFile(std::ostream& fout,
  353. cmLocalGenerator* root,
  354. std::vector<cmLocalGenerator*>& generators)
  355. {
  356. // Write out the header for a SLN file
  357. this->WriteSLNHeader(fout);
  358. // collect the set of targets for this project by
  359. // tracing depends of all targets.
  360. // also collect the set of targets that are explicitly
  361. // in this project.
  362. cmGlobalGenerator::TargetDependSet projectTargets;
  363. cmGlobalGenerator::TargetDependSet originalTargets;
  364. this->GetTargetSets(projectTargets,
  365. originalTargets,
  366. root, generators);
  367. OrderedTargetDependSet orderedProjectTargets(projectTargets);
  368. this->WriteTargetsToSolution(fout, root, orderedProjectTargets);
  369. // Write out the configurations information for the solution
  370. fout << "Global\n"
  371. << "\tGlobalSection(SolutionConfiguration) = preSolution\n";
  372. int c = 0;
  373. for(std::vector<std::string>::iterator i = this->Configurations.begin();
  374. i != this->Configurations.end(); ++i)
  375. {
  376. fout << "\t\tConfigName." << c << " = " << *i << "\n";
  377. c++;
  378. }
  379. fout << "\tEndGlobalSection\n";
  380. // Write out project(target) depends
  381. fout << "\tGlobalSection(ProjectDependencies) = postSolution\n";
  382. this->WriteTargetDepends(fout, orderedProjectTargets);
  383. fout << "\tEndGlobalSection\n";
  384. // Write out the configurations for all the targets in the project
  385. fout << "\tGlobalSection(ProjectConfiguration) = postSolution\n";
  386. this->WriteTargetConfigurations(fout, root, orderedProjectTargets);
  387. fout << "\tEndGlobalSection\n";
  388. // Write the footer for the SLN file
  389. this->WriteSLNFooter(fout);
  390. }
  391. //----------------------------------------------------------------------------
  392. std::string
  393. cmGlobalVisualStudio7Generator::ConvertToSolutionPath(const char* path)
  394. {
  395. // Convert to backslashes. Do not use ConvertToOutputPath because
  396. // we will add quoting ourselves, and we know these projects always
  397. // use windows slashes.
  398. std::string d = path;
  399. std::string::size_type pos = 0;
  400. while((pos = d.find('/', pos)) != d.npos)
  401. {
  402. d[pos++] = '\\';
  403. }
  404. return d;
  405. }
  406. // Write a dsp file into the SLN file,
  407. // Note, that dependencies from executables to
  408. // the libraries it uses are also done here
  409. void cmGlobalVisualStudio7Generator::WriteProject(std::ostream& fout,
  410. const char* dspname,
  411. const char* dir, cmTarget& target)
  412. {
  413. // check to see if this is a fortran build
  414. const char* ext = ".vcproj";
  415. const char* project =
  416. "Project(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"";
  417. if(this->TargetIsFortranOnly(target))
  418. {
  419. ext = ".vfproj";
  420. project = "Project(\"{6989167D-11E4-40FE-8C1A-2192A86A7E90}\") = \"";
  421. }
  422. fout << project
  423. << dspname << "\", \""
  424. << this->ConvertToSolutionPath(dir)
  425. << "\\" << dspname << ext << "\", \"{"
  426. << this->GetGUID(dspname) << "}\"\nEndProject\n";
  427. }
  428. // Write a dsp file into the SLN file,
  429. // Note, that dependencies from executables to
  430. // the libraries it uses are also done here
  431. void
  432. cmGlobalVisualStudio7Generator
  433. ::WriteProjectDepends(std::ostream& fout,
  434. const char* dspname,
  435. const char*, cmTarget& target)
  436. {
  437. int depcount = 0;
  438. // insert Begin Project Dependency Project_Dep_Name project stuff here
  439. if (target.GetType() != cmTarget::STATIC_LIBRARY)
  440. {
  441. cmTarget::LinkLibraryVectorType::const_iterator j, jend;
  442. j = target.GetLinkLibraries().begin();
  443. jend = target.GetLinkLibraries().end();
  444. for(;j!= jend; ++j)
  445. {
  446. if(j->first != dspname)
  447. {
  448. // is the library part of this SLN ? If so add dependency
  449. if(this->FindTarget(0, j->first.c_str()))
  450. {
  451. std::string guid = this->GetGUID(j->first.c_str());
  452. if(guid.size() == 0)
  453. {
  454. std::string m = "Target: ";
  455. m += dspname;
  456. m += " depends on unknown target: ";
  457. m += j->first.c_str();
  458. cmSystemTools::Error(m.c_str());
  459. }
  460. fout << "\t\t{" << this->GetGUID(dspname) << "}."
  461. << depcount << " = {" << guid << "}\n";
  462. depcount++;
  463. }
  464. }
  465. }
  466. }
  467. std::set<cmStdString>::const_iterator i, end;
  468. // write utility dependencies.
  469. i = target.GetUtilities().begin();
  470. end = target.GetUtilities().end();
  471. for(;i!= end; ++i)
  472. {
  473. if(*i != dspname)
  474. {
  475. std::string name = this->GetUtilityForTarget(target, i->c_str());
  476. std::string guid = this->GetGUID(name.c_str());
  477. if(guid.size() == 0)
  478. {
  479. std::string m = "Target: ";
  480. m += dspname;
  481. m += " depends on unknown target: ";
  482. m += name.c_str();
  483. cmSystemTools::Error(m.c_str());
  484. }
  485. fout << "\t\t{" << this->GetGUID(dspname) << "}." << depcount << " = {"
  486. << guid << "}\n";
  487. depcount++;
  488. }
  489. }
  490. }
  491. // Write a dsp file into the SLN file, Note, that dependencies from
  492. // executables to the libraries it uses are also done here
  493. void cmGlobalVisualStudio7Generator
  494. ::WriteProjectConfigurations(std::ostream& fout, const char* name,
  495. bool partOfDefaultBuild)
  496. {
  497. std::string guid = this->GetGUID(name);
  498. for(std::vector<std::string>::iterator i = this->Configurations.begin();
  499. i != this->Configurations.end(); ++i)
  500. {
  501. fout << "\t\t{" << guid << "}." << *i
  502. << ".ActiveCfg = " << *i << "|Win32\n";
  503. if(partOfDefaultBuild)
  504. {
  505. fout << "\t\t{" << guid << "}." << *i
  506. << ".Build.0 = " << *i << "|Win32\n";
  507. }
  508. }
  509. }
  510. // Write a dsp file into the SLN file,
  511. // Note, that dependencies from executables to
  512. // the libraries it uses are also done here
  513. void cmGlobalVisualStudio7Generator::WriteExternalProject(std::ostream& fout,
  514. const char* name,
  515. const char* location,
  516. const std::vector<std::string>&)
  517. {
  518. std::string d = cmSystemTools::ConvertToOutputPath(location);
  519. fout << "Project(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \""
  520. << name << "\", \""
  521. << this->ConvertToSolutionPath(location) << "\", \"{"
  522. << this->GetGUID(name)
  523. << "}\"\n";
  524. fout << "EndProject\n";
  525. }
  526. // Standard end of dsw file
  527. void cmGlobalVisualStudio7Generator::WriteSLNFooter(std::ostream& fout)
  528. {
  529. fout << "\tGlobalSection(ExtensibilityGlobals) = postSolution\n"
  530. << "\tEndGlobalSection\n"
  531. << "\tGlobalSection(ExtensibilityAddIns) = postSolution\n"
  532. << "\tEndGlobalSection\n"
  533. << "EndGlobal\n";
  534. }
  535. // ouput standard header for dsw file
  536. void cmGlobalVisualStudio7Generator::WriteSLNHeader(std::ostream& fout)
  537. {
  538. fout << "Microsoft Visual Studio Solution File, Format Version 7.00\n";
  539. }
  540. std::string cmGlobalVisualStudio7Generator::GetGUID(const char* name)
  541. {
  542. std::string guidStoreName = name;
  543. guidStoreName += "_GUID_CMAKE";
  544. const char* storedGUID =
  545. this->CMakeInstance->GetCacheDefinition(guidStoreName.c_str());
  546. if(storedGUID)
  547. {
  548. return std::string(storedGUID);
  549. }
  550. cmSystemTools::Error("Unknown Target referenced : ",
  551. name);
  552. return "";
  553. }
  554. void cmGlobalVisualStudio7Generator::CreateGUID(const char* name)
  555. {
  556. std::string guidStoreName = name;
  557. guidStoreName += "_GUID_CMAKE";
  558. if(this->CMakeInstance->GetCacheDefinition(guidStoreName.c_str()))
  559. {
  560. return;
  561. }
  562. std::string ret;
  563. UUID uid;
  564. unsigned char *uidstr;
  565. UuidCreate(&uid);
  566. UuidToString(&uid,&uidstr);
  567. ret = reinterpret_cast<char*>(uidstr);
  568. RpcStringFree(&uidstr);
  569. ret = cmSystemTools::UpperCase(ret);
  570. this->CMakeInstance->AddCacheEntry(guidStoreName.c_str(),
  571. ret.c_str(), "Stored GUID",
  572. cmCacheManager::INTERNAL);
  573. }
  574. std::vector<std::string> *cmGlobalVisualStudio7Generator::GetConfigurations()
  575. {
  576. return &this->Configurations;
  577. };
  578. //----------------------------------------------------------------------------
  579. void cmGlobalVisualStudio7Generator
  580. ::GetDocumentation(cmDocumentationEntry& entry) const
  581. {
  582. entry.Name = this->GetName();
  583. entry.Brief = "Generates Visual Studio .NET 2002 project files.";
  584. entry.Full = "";
  585. }
  586. // make sure "special" targets have GUID's
  587. void cmGlobalVisualStudio7Generator::Configure()
  588. {
  589. cmGlobalGenerator::Configure();
  590. this->CreateGUID("ALL_BUILD");
  591. this->CreateGUID("INSTALL");
  592. this->CreateGUID("RUN_TESTS");
  593. this->CreateGUID("EDIT_CACHE");
  594. this->CreateGUID("REBUILD_CACHE");
  595. this->CreateGUID("PACKAGE");
  596. }
  597. //----------------------------------------------------------------------------
  598. void
  599. cmGlobalVisualStudio7Generator
  600. ::AppendDirectoryForConfig(const char* prefix,
  601. const char* config,
  602. const char* suffix,
  603. std::string& dir)
  604. {
  605. if(config)
  606. {
  607. dir += prefix;
  608. dir += config;
  609. dir += suffix;
  610. }
  611. }
  612. bool cmGlobalVisualStudio7Generator::IsPartOfDefaultBuild(const char* project,
  613. cmTarget* target)
  614. {
  615. if(target->GetPropertyAsBool("EXCLUDE_FROM_DEFAULT_BUILD"))
  616. {
  617. return false;
  618. }
  619. // if it is a utilitiy target then only make it part of the
  620. // default build if another target depends on it
  621. int type = target->GetType();
  622. if (type == cmTarget::GLOBAL_TARGET)
  623. {
  624. return false;
  625. }
  626. if(type == cmTarget::UTILITY)
  627. {
  628. return this->IsDependedOn(project, target);
  629. }
  630. // default is to be part of the build
  631. return true;
  632. }
  633. //----------------------------------------------------------------------------
  634. bool
  635. cmGlobalVisualStudio7Generator::TargetCompare
  636. ::operator()(cmTarget const* l, cmTarget const* r)
  637. {
  638. // Make sure ALL_BUILD is first so it is the default active project.
  639. if(strcmp(r->GetName(), "ALL_BUILD") == 0)
  640. {
  641. return false;
  642. }
  643. if(strcmp(l->GetName(), "ALL_BUILD") == 0)
  644. {
  645. return true;
  646. }
  647. return strcmp(l->GetName(), r->GetName()) < 0;
  648. }
  649. //----------------------------------------------------------------------------
  650. cmGlobalVisualStudio7Generator::OrderedTargetDependSet
  651. ::OrderedTargetDependSet(cmGlobalGenerator::TargetDependSet const& targets)
  652. {
  653. for(cmGlobalGenerator::TargetDependSet::const_iterator ti =
  654. targets.begin(); ti != targets.end(); ++ti)
  655. {
  656. this->insert(*ti);
  657. }
  658. }
  659. //----------------------------------------------------------------------------
  660. static cmVS7FlagTable cmVS7ExtraFlagTable[] =
  661. {
  662. // Precompiled header and related options. Note that the
  663. // UsePrecompiledHeader entries are marked as "Continue" so that the
  664. // corresponding PrecompiledHeaderThrough entry can be found.
  665. {"UsePrecompiledHeader", "YX", "Automatically Generate", "2",
  666. cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue},
  667. {"PrecompiledHeaderThrough", "YX", "Precompiled Header Name", "",
  668. cmVS7FlagTable::UserValueRequired},
  669. {"UsePrecompiledHeader", "Yu", "Use Precompiled Header", "3",
  670. cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue},
  671. {"PrecompiledHeaderThrough", "Yu", "Precompiled Header Name", "",
  672. cmVS7FlagTable::UserValueRequired},
  673. {"WholeProgramOptimization", "LTCG", "WholeProgramOptimization", "TRUE", 0},
  674. // Exception handling mode. If no entries match, it will be FALSE.
  675. {"ExceptionHandling", "GX", "enable c++ exceptions", "TRUE", 0},
  676. {"ExceptionHandling", "EHsc", "enable c++ exceptions", "TRUE", 0},
  677. // The EHa option does not have an IDE setting. Let it go to false,
  678. // and have EHa passed on the command line by leaving out the table
  679. // entry.
  680. {0,0,0,0,0}
  681. };
  682. cmVS7FlagTable const* cmGlobalVisualStudio7Generator::GetExtraFlagTableVS7()
  683. {
  684. return cmVS7ExtraFlagTable;
  685. }