cmGlobalVisualStudio6Generator.cxx 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  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 "cmGlobalVisualStudio6Generator.h"
  14. #include "cmLocalVisualStudio6Generator.h"
  15. #include "cmMakefile.h"
  16. #include "cmake.h"
  17. cmGlobalVisualStudio6Generator::cmGlobalVisualStudio6Generator()
  18. {
  19. m_FindMakeProgramFile = "CMakeVS6FindMake.cmake";
  20. }
  21. void cmGlobalVisualStudio6Generator::EnableLanguage(std::vector<std::string>const& lang,
  22. cmMakefile *mf)
  23. {
  24. mf->AddDefinition("CMAKE_CFG_INTDIR","$(IntDir)");
  25. mf->AddDefinition("CMAKE_GENERATOR_CC", "cl");
  26. mf->AddDefinition("CMAKE_GENERATOR_CXX", "cl");
  27. mf->AddDefinition("CMAKE_GENERATOR_RC", "rc");
  28. mf->AddDefinition("CMAKE_GENERATOR_NO_COMPILER_ENV", "1");
  29. mf->AddDefinition("CMAKE_GENERATOR_Fortran", "ifort");
  30. this->GenerateConfigurations(mf);
  31. this->cmGlobalGenerator::EnableLanguage(lang, mf);
  32. }
  33. void cmGlobalVisualStudio6Generator::GenerateConfigurations(cmMakefile* mf)
  34. {
  35. std::string fname= mf->GetRequiredDefinition("CMAKE_ROOT");
  36. const char* def= mf->GetDefinition( "MSPROJECT_TEMPLATE_DIRECTORY");
  37. if(def)
  38. {
  39. fname = def;
  40. }
  41. else
  42. {
  43. fname += "/Templates";
  44. }
  45. fname += "/CMakeVisualStudio6Configurations.cmake";
  46. if(!mf->ReadListFile(mf->GetCurrentListFile(), fname.c_str()))
  47. {
  48. cmSystemTools::Error("Cannot open ", fname.c_str(),
  49. ". Please copy this file from the main "
  50. "CMake/Templates directory and edit it for "
  51. "your build configurations.");
  52. }
  53. else if(!mf->GetDefinition("CMAKE_CONFIGURATION_TYPES"))
  54. {
  55. cmSystemTools::Error("CMAKE_CONFIGURATION_TYPES not set by ",
  56. fname.c_str(),
  57. ". Please copy this file from the main "
  58. "CMake/Templates directory and edit it for "
  59. "your build configurations.");
  60. }
  61. }
  62. std::string cmGlobalVisualStudio6Generator::GenerateBuildCommand(const char* makeProgram, const char *projectName, const char *targetName,
  63. const char* config)
  64. {
  65. // now build the test
  66. std::vector<std::string> mp;
  67. mp.push_back("[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\6.0\\Setup;VsCommonDir]/MSDev98/Bin");
  68. cmSystemTools::ExpandRegistryValues(mp[0]);
  69. std::string originalCommand = makeProgram;
  70. std::string makeCommand =
  71. cmSystemTools::FindProgram(makeProgram, mp);
  72. if(makeCommand.size() == 0)
  73. {
  74. std::string e = "Generator cannot find Visual Studio 6 msdev program \"";
  75. e += originalCommand;
  76. e += "\" specified by CMAKE_MAKE_PROGRAM cache entry. ";
  77. e += "Please fix the setting.";
  78. cmSystemTools::Error(e.c_str());
  79. return "";
  80. }
  81. makeCommand = cmSystemTools::ConvertToOutputPath(makeCommand.c_str());
  82. // if there are spaces in the makeCommand, assume a full path
  83. // and convert it to a path with no spaces in it as the
  84. // RunSingleCommand does not like spaces
  85. #if defined(_WIN32) && !defined(__CYGWIN__)
  86. if(makeCommand.find(' ') != std::string::npos)
  87. {
  88. cmSystemTools::GetShortPath(makeCommand.c_str(), makeCommand);
  89. }
  90. #endif
  91. makeCommand += " ";
  92. makeCommand += projectName;
  93. makeCommand += ".dsw /MAKE \"";
  94. bool clean = false;
  95. if ( targetName && strcmp(targetName, "clean") == 0 )
  96. {
  97. clean = true;
  98. targetName = "ALL_BUILD";
  99. }
  100. if (targetName && strlen(targetName))
  101. {
  102. makeCommand += targetName;
  103. }
  104. else
  105. {
  106. makeCommand += "ALL_BUILD";
  107. }
  108. makeCommand += " - ";
  109. if(config && strlen(config))
  110. {
  111. makeCommand += config;
  112. }
  113. else
  114. {
  115. makeCommand += "Debug";
  116. }
  117. if(clean)
  118. {
  119. makeCommand += "\" /CLEAN";
  120. }
  121. else
  122. {
  123. makeCommand += "\" /BUILD";
  124. }
  125. return makeCommand;
  126. }
  127. ///! Create a local generator appropriate to this Global Generator
  128. cmLocalGenerator *cmGlobalVisualStudio6Generator::CreateLocalGenerator()
  129. {
  130. cmLocalGenerator *lg = new cmLocalVisualStudio6Generator;
  131. lg->SetGlobalGenerator(this);
  132. return lg;
  133. }
  134. void cmGlobalVisualStudio6Generator::Generate()
  135. {
  136. // add a special target that depends on ALL projects for easy build
  137. // of one configuration only.
  138. const char* no_output = 0;
  139. std::vector<std::string> no_depends;
  140. std::map<cmStdString, std::vector<cmLocalGenerator*> >::iterator it;
  141. for(it = m_ProjectMap.begin(); it!= m_ProjectMap.end(); ++it)
  142. {
  143. std::vector<cmLocalGenerator*>& gen = it->second;
  144. // add the ALL_BUILD to the first local generator of each project
  145. if(gen.size())
  146. {
  147. gen[0]->GetMakefile()->
  148. AddUtilityCommand("ALL_BUILD", false, no_output, no_depends,
  149. "echo", "Build all projects");
  150. std::string cmake_command =
  151. m_LocalGenerators[0]->GetMakefile()->GetRequiredDefinition("CMAKE_COMMAND");
  152. gen[0]->GetMakefile()->
  153. AddUtilityCommand("INSTALL", false, no_output, no_depends,
  154. cmake_command.c_str(),
  155. "-DBUILD_TYPE=$(IntDir)", "-P", "cmake_install.cmake");
  156. }
  157. }
  158. // add the Run Tests command
  159. this->SetupTests();
  160. // first do the superclass method
  161. this->cmGlobalGenerator::Generate();
  162. // Now write out the DSW
  163. this->OutputDSWFile();
  164. }
  165. // Write a DSW file to the stream
  166. void cmGlobalVisualStudio6Generator::WriteDSWFile(std::ostream& fout,
  167. cmLocalGenerator* root,
  168. std::vector<cmLocalGenerator*>& generators)
  169. {
  170. // Write out the header for a DSW file
  171. this->WriteDSWHeader(fout);
  172. // Get the home directory with the trailing slash
  173. std::string homedir = root->GetMakefile()->GetStartOutputDirectory();
  174. homedir += "/";
  175. unsigned int i;
  176. bool doneAllBuild = false;
  177. bool doneRunTests = false;
  178. bool doneInstall = false;
  179. for(i = 0; i < generators.size(); ++i)
  180. {
  181. if(this->IsExcluded(root, generators[i]))
  182. {
  183. continue;
  184. }
  185. cmMakefile* mf = generators[i]->GetMakefile();
  186. // Get the source directory from the makefile
  187. std::string dir = mf->GetStartOutputDirectory();
  188. // remove the home directory and / from the source directory
  189. // this gives a relative path
  190. cmSystemTools::ReplaceString(dir, homedir.c_str(), "");
  191. // Get the list of create dsp files names from the LocalGenerator, more
  192. // than one dsp could have been created per input CMakeLists.txt file
  193. // for each target
  194. std::vector<std::string> dspnames =
  195. static_cast<cmLocalVisualStudio6Generator *>(generators[i])
  196. ->GetCreatedProjectNames();
  197. cmTargets &tgts = generators[i]->GetMakefile()->GetTargets();
  198. cmTargets::iterator l = tgts.begin();
  199. for(std::vector<std::string>::iterator si = dspnames.begin();
  200. l != tgts.end(); ++l)
  201. {
  202. // special handling for the current makefile
  203. if(mf == generators[0]->GetMakefile())
  204. {
  205. dir = "."; // no subdirectory for project generated
  206. // if this is the special ALL_BUILD utility, then
  207. // make it depend on every other non UTILITY project.
  208. // This is done by adding the names to the GetUtilities
  209. // vector on the makefile
  210. if(l->first == "ALL_BUILD" && !doneAllBuild)
  211. {
  212. unsigned int j;
  213. for(j = 0; j < generators.size(); ++j)
  214. {
  215. const cmTargets &atgts =
  216. generators[j]->GetMakefile()->GetTargets();
  217. for(cmTargets::const_iterator al = atgts.begin();
  218. al != atgts.end(); ++al)
  219. {
  220. if (al->second.IsInAll())
  221. {
  222. if (al->second.GetType() == cmTarget::UTILITY)
  223. {
  224. l->second.AddUtility(al->first.c_str());
  225. }
  226. else
  227. {
  228. l->second.AddLinkLibrary(al->first, cmTarget::GENERAL);
  229. }
  230. }
  231. }
  232. }
  233. }
  234. }
  235. // Write the project into the DSW file
  236. if (strncmp(l->first.c_str(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
  237. {
  238. cmCustomCommand cc = l->second.GetPostBuildCommands()[0];
  239. const cmCustomCommandLines& cmds = cc.GetCommandLines();
  240. std::string project = cmds[0][0];
  241. std::string location = cmds[0][1];
  242. this->WriteExternalProject(fout, project.c_str(), location.c_str(), cc.GetDepends());
  243. }
  244. else
  245. {
  246. if ((l->second.GetType() != cmTarget::INSTALL_FILES)
  247. && (l->second.GetType() != cmTarget::INSTALL_PROGRAMS))
  248. {
  249. const char* extra_depend = 0;
  250. bool skip = false;
  251. // skip ALL_BUILD and RUN_TESTS if they have already been added
  252. if(l->first == "ALL_BUILD" )
  253. {
  254. if(doneAllBuild)
  255. {
  256. skip = true;
  257. }
  258. else
  259. {
  260. doneAllBuild = true;
  261. }
  262. }
  263. if(l->first == "INSTALL")
  264. {
  265. if(doneInstall)
  266. {
  267. skip = true;
  268. }
  269. else
  270. {
  271. doneInstall = true;
  272. }
  273. // Make the INSTALL target depend on ALL_BUILD unless the
  274. // project says to not do so.
  275. const char* noall =
  276. root->GetMakefile()
  277. ->GetDefinition("CMAKE_SKIP_INSTALL_ALL_DEPENDENCY");
  278. if(!noall || cmSystemTools::IsOff(noall))
  279. {
  280. extra_depend = "ALL_BUILD";
  281. }
  282. }
  283. if(l->first == "RUN_TESTS")
  284. {
  285. if(doneRunTests)
  286. {
  287. skip = true;
  288. }
  289. else
  290. {
  291. doneRunTests = true;
  292. }
  293. }
  294. if(!skip)
  295. {
  296. this->WriteProject(fout, si->c_str(), dir.c_str(),l->second,
  297. extra_depend);
  298. }
  299. ++si;
  300. }
  301. }
  302. }
  303. }
  304. // Write the footer for the DSW file
  305. this->WriteDSWFooter(fout);
  306. }
  307. void cmGlobalVisualStudio6Generator::OutputDSWFile(cmLocalGenerator* root,
  308. std::vector<cmLocalGenerator*>& generators)
  309. {
  310. if(generators.size() == 0)
  311. {
  312. return;
  313. }
  314. std::string fname = root->GetMakefile()->GetStartOutputDirectory();
  315. fname += "/";
  316. fname += root->GetMakefile()->GetProjectName();
  317. fname += ".dsw";
  318. std::ofstream fout(fname.c_str());
  319. if(!fout)
  320. {
  321. cmSystemTools::Error("Error can not open DSW file for write: ",
  322. fname.c_str());
  323. cmSystemTools::ReportLastSystemError("");
  324. return;
  325. }
  326. this->WriteDSWFile(fout, root, generators);
  327. }
  328. // output the DSW file
  329. void cmGlobalVisualStudio6Generator::OutputDSWFile()
  330. {
  331. std::map<cmStdString, std::vector<cmLocalGenerator*> >::iterator it;
  332. for(it = m_ProjectMap.begin(); it!= m_ProjectMap.end(); ++it)
  333. {
  334. this->OutputDSWFile(it->second[0], it->second);
  335. }
  336. }
  337. // Write a dsp file into the DSW file,
  338. // Note, that dependencies from executables to
  339. // the libraries it uses are also done here
  340. void cmGlobalVisualStudio6Generator::WriteProject(std::ostream& fout,
  341. const char* dspname,
  342. const char* dir,
  343. const cmTarget& target,
  344. const char* extra_depend)
  345. {
  346. fout << "#########################################################"
  347. "######################\n\n";
  348. fout << "Project: \"" << dspname << "\"="
  349. << dir << "\\" << dspname << ".dsp - Package Owner=<4>\n\n";
  350. fout << "Package=<5>\n{{{\n}}}\n\n";
  351. fout << "Package=<4>\n";
  352. fout << "{{{\n";
  353. // insert Begin Project Dependency Project_Dep_Name project stuff here
  354. if (target.GetType() != cmTarget::STATIC_LIBRARY)
  355. {
  356. cmTarget::LinkLibraries::const_iterator j, jend;
  357. j = target.GetLinkLibraries().begin();
  358. jend = target.GetLinkLibraries().end();
  359. for(;j!= jend; ++j)
  360. {
  361. if(j->first != dspname)
  362. {
  363. // is the library part of this DSW ? If so add dependency
  364. std::string libPath = j->first + "_CMAKE_PATH";
  365. const char* cacheValue
  366. = m_CMakeInstance->GetCacheDefinition(libPath.c_str());
  367. if(cacheValue && *cacheValue)
  368. {
  369. fout << "Begin Project Dependency\n";
  370. fout << "Project_Dep_Name " << j->first.c_str() << "\n";
  371. fout << "End Project Dependency\n";
  372. }
  373. }
  374. }
  375. }
  376. // Add an extra dependency if specified.
  377. if(extra_depend)
  378. {
  379. fout << "Begin Project Dependency\n";
  380. fout << "Project_Dep_Name " << extra_depend << "\n";
  381. fout << "End Project Dependency\n";
  382. }
  383. std::set<cmStdString>::const_iterator i, end;
  384. // write utility dependencies.
  385. i = target.GetUtilities().begin();
  386. end = target.GetUtilities().end();
  387. for(;i!= end; ++i)
  388. {
  389. if(*i != dspname)
  390. {
  391. std::string depName = *i;
  392. if(strncmp(depName.c_str(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
  393. {
  394. depName.erase(depName.begin(), depName.begin() + 27);
  395. }
  396. fout << "Begin Project Dependency\n";
  397. fout << "Project_Dep_Name " << depName << "\n";
  398. fout << "End Project Dependency\n";
  399. }
  400. }
  401. fout << "}}}\n\n";
  402. }
  403. // Write a dsp file into the DSW file,
  404. // Note, that dependencies from executables to
  405. // the libraries it uses are also done here
  406. void cmGlobalVisualStudio6Generator::WriteExternalProject(std::ostream& fout,
  407. const char* name,
  408. const char* location,
  409. const std::vector<std::string>& dependencies)
  410. {
  411. fout << "#########################################################"
  412. "######################\n\n";
  413. fout << "Project: \"" << name << "\"="
  414. << location << " - Package Owner=<4>\n\n";
  415. fout << "Package=<5>\n{{{\n}}}\n\n";
  416. fout << "Package=<4>\n";
  417. fout << "{{{\n";
  418. std::vector<std::string>::const_iterator i, end;
  419. // write dependencies.
  420. i = dependencies.begin();
  421. end = dependencies.end();
  422. for(;i!= end; ++i)
  423. {
  424. fout << "Begin Project Dependency\n";
  425. fout << "Project_Dep_Name " << *i << "\n";
  426. fout << "End Project Dependency\n";
  427. }
  428. fout << "}}}\n\n";
  429. }
  430. // Standard end of dsw file
  431. void cmGlobalVisualStudio6Generator::WriteDSWFooter(std::ostream& fout)
  432. {
  433. fout << "######################################################"
  434. "#########################\n\n";
  435. fout << "Global:\n\n";
  436. fout << "Package=<5>\n{{{\n}}}\n\n";
  437. fout << "Package=<3>\n{{{\n}}}\n\n";
  438. fout << "#####################################################"
  439. "##########################\n\n";
  440. }
  441. // ouput standard header for dsw file
  442. void cmGlobalVisualStudio6Generator::WriteDSWHeader(std::ostream& fout)
  443. {
  444. fout << "Microsoft Developer Studio Workspace File, Format Version 6.00\n";
  445. fout << "# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\n\n";
  446. }
  447. //----------------------------------------------------------------------------
  448. void cmGlobalVisualStudio6Generator::GetDocumentation(cmDocumentationEntry& entry) const
  449. {
  450. entry.name = this->GetName();
  451. entry.brief = "Generates Visual Studio 6 project files.";
  452. entry.full = "";
  453. }