cmGlobalVisualStudio7Generator.cxx 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767
  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_Fortran", "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::AddAllBuildDepends(
  216. cmLocalGenerator* root,
  217. cmTarget* target,
  218. cmGlobalGenerator::TargetDependSet& originalTargets)
  219. {
  220. // if this is the special ALL_BUILD utility, then
  221. // make it depend on every other non UTILITY project.
  222. for(cmGlobalGenerator::TargetDependSet::iterator ot =
  223. originalTargets.begin(); ot != originalTargets.end(); ++ot)
  224. {
  225. cmTarget* t = const_cast<cmTarget*>(*ot);
  226. if(!this->IsExcluded(root, *t))
  227. {
  228. if (t->GetType() == cmTarget::UTILITY ||
  229. t->GetType() == cmTarget::GLOBAL_TARGET)
  230. {
  231. target->AddUtility(t->GetName());
  232. }
  233. else
  234. {
  235. target->AddLinkLibrary(t->GetName(),cmTarget::GENERAL);
  236. }
  237. }
  238. }
  239. }
  240. void cmGlobalVisualStudio7Generator::WriteTargetConfigurations(
  241. std::ostream& fout,
  242. cmLocalGenerator* root,
  243. cmGlobalGenerator::TargetDependSet& projectTargets)
  244. {
  245. // loop over again and write out configurations for each target
  246. // in the solution
  247. for(cmGlobalGenerator::TargetDependSet::iterator tt =
  248. projectTargets.begin(); tt != projectTargets.end(); ++tt)
  249. {
  250. cmTarget* target = const_cast<cmTarget*>(*tt);
  251. if (strncmp(target->GetName(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
  252. {
  253. cmCustomCommand cc = target->GetPostBuildCommands()[0];
  254. const cmCustomCommandLines& cmds = cc.GetCommandLines();
  255. std::string project = cmds[0][0];
  256. this->WriteProjectConfigurations(fout, project.c_str(),
  257. true);
  258. }
  259. else
  260. {
  261. bool partOfDefaultBuild = this->IsPartOfDefaultBuild(
  262. root->GetMakefile()->GetProjectName(), target);
  263. const char *vcprojName =
  264. target->GetProperty("GENERATOR_FILE_NAME");
  265. if (vcprojName)
  266. {
  267. this->WriteProjectConfigurations(fout, vcprojName,
  268. partOfDefaultBuild);
  269. }
  270. }
  271. }
  272. }
  273. void cmGlobalVisualStudio7Generator::WriteTargetsToSolution(
  274. std::ostream& fout,
  275. cmLocalGenerator* root,
  276. cmGlobalGenerator::TargetDependSet& projectTargets,
  277. cmGlobalGenerator::TargetDependSet& originalTargets
  278. )
  279. {
  280. // Create a map of project that should only show up once
  281. // in a project
  282. const char* onlyOnceNames[] =
  283. {"INCLUDE_EXTERNAL_MSPROJECT","CMAKE_CHECK_BUILD_SYSTEM_TARGET",
  284. "INSTALL", "RUN_TESTS", "EDIT_CACHE", "REBUILD_CACHE", "PACKAGE", 0};
  285. std::map<cmStdString, int> onlyOnceMap;
  286. int i =0;
  287. for(const char* name = onlyOnceNames[i];
  288. name != 0; name = onlyOnceNames[++i])
  289. {
  290. onlyOnceMap[name] = 0;
  291. }
  292. // add the CMAKE_CHECK_BUILD_SYSTEM_TARGET
  293. onlyOnceMap[CMAKE_CHECK_BUILD_SYSTEM_TARGET] = 0;
  294. std::string rootdir = root->GetMakefile()->GetStartOutputDirectory();
  295. rootdir += "/";
  296. for(cmGlobalGenerator::TargetDependSet::iterator tt =
  297. projectTargets.begin(); tt != projectTargets.end(); ++tt)
  298. {
  299. cmTarget* target = const_cast<cmTarget*>(*tt);
  300. cmMakefile* mf = target->GetMakefile();
  301. // look for the all_build rule and add depends to all
  302. // of the original targets (none that were "pulled" into this project)
  303. if(mf == root->GetMakefile() &&
  304. strcmp(target->GetName(), "ALL_BUILD") == 0)
  305. {
  306. this->AddAllBuildDepends(root, target, originalTargets);
  307. }
  308. // handle external vc project files
  309. if (strncmp(target->GetName(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
  310. {
  311. cmCustomCommand cc = target->GetPostBuildCommands()[0];
  312. const cmCustomCommandLines& cmds = cc.GetCommandLines();
  313. std::string project = cmds[0][0];
  314. std::string location = cmds[0][1];
  315. std::cout << "About to call WriteExternalProject " << this->GetName() << "\n";
  316. this->WriteExternalProject(fout, project.c_str(),
  317. location.c_str(), cc.GetDepends());
  318. }
  319. else
  320. {
  321. // if the target is an onlyOnceNames do it once
  322. std::map<cmStdString, int>::iterator o =
  323. onlyOnceMap.find(target->GetName());
  324. bool skip = false;
  325. if(o != onlyOnceMap.end())
  326. {
  327. if(o->second > 0)
  328. {
  329. skip = true;
  330. }
  331. else
  332. {
  333. o->second++;
  334. }
  335. }
  336. // if not skipping the project then write it into the
  337. // solution
  338. if(!skip)
  339. {
  340. const char *vcprojName =
  341. target->GetProperty("GENERATOR_FILE_NAME");
  342. if(vcprojName)
  343. {
  344. cmMakefile* tmf = target->GetMakefile();
  345. std::string dir = tmf->GetStartOutputDirectory();
  346. dir = root->Convert(dir.c_str(),
  347. cmLocalGenerator::START_OUTPUT);
  348. this->WriteProject(fout, vcprojName, dir.c_str(),
  349. *target);
  350. }
  351. }
  352. }
  353. }
  354. }
  355. void cmGlobalVisualStudio7Generator::WriteTargetDepends(
  356. std::ostream& fout,
  357. cmGlobalGenerator::TargetDependSet& projectTargets
  358. )
  359. {
  360. for(cmGlobalGenerator::TargetDependSet::iterator tt =
  361. projectTargets.begin(); tt != projectTargets.end(); ++tt)
  362. {
  363. cmTarget* target = const_cast<cmTarget*>(*tt);
  364. cmMakefile* mf = target->GetMakefile();
  365. if (strncmp(target->GetName(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
  366. {
  367. cmCustomCommand cc = target->GetPostBuildCommands()[0];
  368. const cmCustomCommandLines& cmds = cc.GetCommandLines();
  369. std::string name = cmds[0][0];
  370. std::vector<std::string> depends = cc.GetDepends();
  371. std::vector<std::string>::iterator iter;
  372. int depcount = 0;
  373. for(iter = depends.begin(); iter != depends.end(); ++iter)
  374. {
  375. std::string guid = this->GetGUID(iter->c_str());
  376. if(guid.size() == 0)
  377. {
  378. std::string m = "Target: ";
  379. m += target->GetName();
  380. m += " depends on unknown target: ";
  381. m += iter->c_str();
  382. cmSystemTools::Error(m.c_str());
  383. }
  384. fout << "\t\t{" << this->GetGUID(name.c_str())
  385. << "}." << depcount << " = {" << guid.c_str() << "}\n";
  386. depcount++;
  387. }
  388. }
  389. else
  390. {
  391. const char *vcprojName =
  392. target->GetProperty("GENERATOR_FILE_NAME");
  393. if (vcprojName)
  394. {
  395. std::string dir = mf->GetStartDirectory();
  396. this->WriteProjectDepends(fout, vcprojName,
  397. dir.c_str(), *target);
  398. }
  399. }
  400. }
  401. }
  402. // Write a SLN file to the stream
  403. void cmGlobalVisualStudio7Generator
  404. ::WriteSLNFile(std::ostream& fout,
  405. cmLocalGenerator* root,
  406. std::vector<cmLocalGenerator*>& generators)
  407. {
  408. // Write out the header for a SLN file
  409. this->WriteSLNHeader(fout);
  410. // collect the set of targets for this project by
  411. // tracing depends of all targets.
  412. // also collect the set of targets that are explicitly
  413. // in this project.
  414. cmGlobalGenerator::TargetDependSet projectTargets;
  415. cmGlobalGenerator::TargetDependSet originalTargets;
  416. this->GetTargetSets(projectTargets,
  417. originalTargets,
  418. root, generators);
  419. this->WriteTargetsToSolution(fout, root, projectTargets, originalTargets);
  420. // Write out the configurations information for the solution
  421. fout << "Global\n"
  422. << "\tGlobalSection(SolutionConfiguration) = preSolution\n";
  423. int c = 0;
  424. for(std::vector<std::string>::iterator i = this->Configurations.begin();
  425. i != this->Configurations.end(); ++i)
  426. {
  427. fout << "\t\tConfigName." << c << " = " << *i << "\n";
  428. c++;
  429. }
  430. fout << "\tEndGlobalSection\n";
  431. // Write out project(target) depends
  432. fout << "\tGlobalSection(ProjectDependencies) = postSolution\n";
  433. this->WriteTargetDepends(fout, projectTargets);
  434. fout << "\tEndGlobalSection\n";
  435. // Write out the configurations for all the targets in the project
  436. fout << "\tGlobalSection(ProjectConfiguration) = postSolution\n";
  437. this->WriteTargetConfigurations(fout, root, projectTargets);
  438. fout << "\tEndGlobalSection\n";
  439. // Write the footer for the SLN file
  440. this->WriteSLNFooter(fout);
  441. }
  442. //----------------------------------------------------------------------------
  443. std::string
  444. cmGlobalVisualStudio7Generator::ConvertToSolutionPath(const char* path)
  445. {
  446. // Convert to backslashes. Do not use ConvertToOutputPath because
  447. // we will add quoting ourselves, and we know these projects always
  448. // use windows slashes.
  449. std::string d = path;
  450. std::string::size_type pos = 0;
  451. while((pos = d.find('/', pos)) != d.npos)
  452. {
  453. d[pos++] = '\\';
  454. }
  455. return d;
  456. }
  457. // Write a dsp file into the SLN file,
  458. // Note, that dependencies from executables to
  459. // the libraries it uses are also done here
  460. void cmGlobalVisualStudio7Generator::WriteProject(std::ostream& fout,
  461. const char* dspname,
  462. const char* dir, cmTarget&)
  463. {
  464. fout << "Project(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \""
  465. << dspname << "\", \""
  466. << this->ConvertToSolutionPath(dir)
  467. << "\\" << dspname << ".vcproj\", \"{"
  468. << this->GetGUID(dspname) << "}\"\nEndProject\n";
  469. }
  470. // Write a dsp file into the SLN file,
  471. // Note, that dependencies from executables to
  472. // the libraries it uses are also done here
  473. void
  474. cmGlobalVisualStudio7Generator
  475. ::WriteProjectDepends(std::ostream& fout,
  476. const char* dspname,
  477. const char*, cmTarget& target)
  478. {
  479. int depcount = 0;
  480. // insert Begin Project Dependency Project_Dep_Name project stuff here
  481. if (target.GetType() != cmTarget::STATIC_LIBRARY)
  482. {
  483. cmTarget::LinkLibraryVectorType::const_iterator j, jend;
  484. j = target.GetLinkLibraries().begin();
  485. jend = target.GetLinkLibraries().end();
  486. for(;j!= jend; ++j)
  487. {
  488. if(j->first != dspname)
  489. {
  490. // is the library part of this SLN ? If so add dependency
  491. if(this->FindTarget(0, j->first.c_str()))
  492. {
  493. std::string guid = this->GetGUID(j->first.c_str());
  494. if(guid.size() == 0)
  495. {
  496. std::string m = "Target: ";
  497. m += dspname;
  498. m += " depends on unknown target: ";
  499. m += j->first.c_str();
  500. cmSystemTools::Error(m.c_str());
  501. }
  502. fout << "\t\t{" << this->GetGUID(dspname) << "}."
  503. << depcount << " = {" << guid << "}\n";
  504. depcount++;
  505. }
  506. }
  507. }
  508. }
  509. std::set<cmStdString>::const_iterator i, end;
  510. // write utility dependencies.
  511. i = target.GetUtilities().begin();
  512. end = target.GetUtilities().end();
  513. for(;i!= end; ++i)
  514. {
  515. if(*i != dspname)
  516. {
  517. std::string name = this->GetUtilityForTarget(target, i->c_str());
  518. std::string guid = this->GetGUID(name.c_str());
  519. if(guid.size() == 0)
  520. {
  521. std::string m = "Target: ";
  522. m += dspname;
  523. m += " depends on unknown target: ";
  524. m += name.c_str();
  525. cmSystemTools::Error(m.c_str());
  526. }
  527. fout << "\t\t{" << this->GetGUID(dspname) << "}." << depcount << " = {"
  528. << guid << "}\n";
  529. depcount++;
  530. }
  531. }
  532. }
  533. // Write a dsp file into the SLN file, Note, that dependencies from
  534. // executables to the libraries it uses are also done here
  535. void cmGlobalVisualStudio7Generator
  536. ::WriteProjectConfigurations(std::ostream& fout, const char* name,
  537. bool partOfDefaultBuild)
  538. {
  539. std::string guid = this->GetGUID(name);
  540. for(std::vector<std::string>::iterator i = this->Configurations.begin();
  541. i != this->Configurations.end(); ++i)
  542. {
  543. fout << "\t\t{" << guid << "}." << *i
  544. << ".ActiveCfg = " << *i << "|Win32\n";
  545. if(partOfDefaultBuild)
  546. {
  547. fout << "\t\t{" << guid << "}." << *i
  548. << ".Build.0 = " << *i << "|Win32\n";
  549. }
  550. }
  551. }
  552. // Write a dsp file into the SLN file,
  553. // Note, that dependencies from executables to
  554. // the libraries it uses are also done here
  555. void cmGlobalVisualStudio7Generator::WriteExternalProject(std::ostream& fout,
  556. const char* name,
  557. const char* location,
  558. const std::vector<std::string>&)
  559. {
  560. std::cout << "WriteExternalProject vs7\n";
  561. std::string d = cmSystemTools::ConvertToOutputPath(location);
  562. fout << "Project(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \""
  563. << name << "\", \""
  564. << this->ConvertToSolutionPath(location) << "\", \"{"
  565. << this->GetGUID(name)
  566. << "}\"\n";
  567. fout << "EndProject\n";
  568. }
  569. // Standard end of dsw file
  570. void cmGlobalVisualStudio7Generator::WriteSLNFooter(std::ostream& fout)
  571. {
  572. fout << "\tGlobalSection(ExtensibilityGlobals) = postSolution\n"
  573. << "\tEndGlobalSection\n"
  574. << "\tGlobalSection(ExtensibilityAddIns) = postSolution\n"
  575. << "\tEndGlobalSection\n"
  576. << "EndGlobal\n";
  577. }
  578. // ouput standard header for dsw file
  579. void cmGlobalVisualStudio7Generator::WriteSLNHeader(std::ostream& fout)
  580. {
  581. fout << "Microsoft Visual Studio Solution File, Format Version 7.00\n";
  582. }
  583. std::string cmGlobalVisualStudio7Generator::GetGUID(const char* name)
  584. {
  585. std::string guidStoreName = name;
  586. guidStoreName += "_GUID_CMAKE";
  587. const char* storedGUID =
  588. this->CMakeInstance->GetCacheDefinition(guidStoreName.c_str());
  589. if(storedGUID)
  590. {
  591. return std::string(storedGUID);
  592. }
  593. cmSystemTools::Error("Unknown Target referenced : ",
  594. name);
  595. return "";
  596. }
  597. void cmGlobalVisualStudio7Generator::CreateGUID(const char* name)
  598. {
  599. std::string guidStoreName = name;
  600. guidStoreName += "_GUID_CMAKE";
  601. if(this->CMakeInstance->GetCacheDefinition(guidStoreName.c_str()))
  602. {
  603. return;
  604. }
  605. std::string ret;
  606. UUID uid;
  607. unsigned char *uidstr;
  608. UuidCreate(&uid);
  609. UuidToString(&uid,&uidstr);
  610. ret = reinterpret_cast<char*>(uidstr);
  611. RpcStringFree(&uidstr);
  612. ret = cmSystemTools::UpperCase(ret);
  613. this->CMakeInstance->AddCacheEntry(guidStoreName.c_str(),
  614. ret.c_str(), "Stored GUID",
  615. cmCacheManager::INTERNAL);
  616. }
  617. std::vector<std::string> *cmGlobalVisualStudio7Generator::GetConfigurations()
  618. {
  619. return &this->Configurations;
  620. };
  621. //----------------------------------------------------------------------------
  622. void cmGlobalVisualStudio7Generator
  623. ::GetDocumentation(cmDocumentationEntry& entry) const
  624. {
  625. entry.Name = this->GetName();
  626. entry.Brief = "Generates Visual Studio .NET 2002 project files.";
  627. entry.Full = "";
  628. }
  629. // make sure "special" targets have GUID's
  630. void cmGlobalVisualStudio7Generator::Configure()
  631. {
  632. cmGlobalGenerator::Configure();
  633. this->CreateGUID("ALL_BUILD");
  634. this->CreateGUID("INSTALL");
  635. this->CreateGUID("RUN_TESTS");
  636. this->CreateGUID("EDIT_CACHE");
  637. this->CreateGUID("REBUILD_CACHE");
  638. this->CreateGUID("PACKAGE");
  639. }
  640. //----------------------------------------------------------------------------
  641. void
  642. cmGlobalVisualStudio7Generator
  643. ::AppendDirectoryForConfig(const char* prefix,
  644. const char* config,
  645. const char* suffix,
  646. std::string& dir)
  647. {
  648. if(config)
  649. {
  650. dir += prefix;
  651. dir += config;
  652. dir += suffix;
  653. }
  654. }
  655. bool cmGlobalVisualStudio7Generator::IsPartOfDefaultBuild(const char* project,
  656. cmTarget* target)
  657. {
  658. if(target->GetPropertyAsBool("EXCLUDE_FROM_DEFAULT_BUILD"))
  659. {
  660. return false;
  661. }
  662. // if it is a utilitiy target then only make it part of the
  663. // default build if another target depends on it
  664. int type = target->GetType();
  665. if (type == cmTarget::GLOBAL_TARGET)
  666. {
  667. return false;
  668. }
  669. if(type == cmTarget::UTILITY)
  670. {
  671. return this->IsDependedOn(project, target);
  672. }
  673. // default is to be part of the build
  674. return true;
  675. }
  676. //----------------------------------------------------------------------------
  677. static cmVS7FlagTable cmVS7ExtraFlagTable[] =
  678. {
  679. // Precompiled header and related options. Note that the
  680. // UsePrecompiledHeader entries are marked as "Continue" so that the
  681. // corresponding PrecompiledHeaderThrough entry can be found.
  682. {"UsePrecompiledHeader", "YX", "Automatically Generate", "2",
  683. cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue},
  684. {"PrecompiledHeaderThrough", "YX", "Precompiled Header Name", "",
  685. cmVS7FlagTable::UserValueRequired},
  686. {"UsePrecompiledHeader", "Yu", "Use Precompiled Header", "3",
  687. cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue},
  688. {"PrecompiledHeaderThrough", "Yu", "Precompiled Header Name", "",
  689. cmVS7FlagTable::UserValueRequired},
  690. // Exception handling mode. If no entries match, it will be FALSE.
  691. {"ExceptionHandling", "GX", "enable c++ exceptions", "TRUE", 0},
  692. {"ExceptionHandling", "EHsc", "enable c++ exceptions", "TRUE", 0},
  693. // The EHa option does not have an IDE setting. Let it go to false,
  694. // and have EHa passed on the command line by leaving out the table
  695. // entry.
  696. {0,0,0,0,0}
  697. };
  698. cmVS7FlagTable const* cmGlobalVisualStudio7Generator::GetExtraFlagTableVS7()
  699. {
  700. return cmVS7ExtraFlagTable;
  701. }