cmExtraCodeBlocksGenerator.cxx 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2004-2009 Kitware, Inc.
  4. Copyright 2004 Alexander Neundorf ([email protected])
  5. Distributed under the OSI-approved BSD License (the "License");
  6. see accompanying file Copyright.txt for details.
  7. This software is distributed WITHOUT ANY WARRANTY; without even the
  8. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. See the License for more information.
  10. ============================================================================*/
  11. #include "cmExtraCodeBlocksGenerator.h"
  12. #include "cmGlobalUnixMakefileGenerator3.h"
  13. #include "cmLocalUnixMakefileGenerator3.h"
  14. #include "cmMakefile.h"
  15. #include "cmake.h"
  16. #include "cmSourceFile.h"
  17. #include "cmGeneratedFileStream.h"
  18. #include "cmTarget.h"
  19. #include "cmSystemTools.h"
  20. #include <cmsys/SystemTools.hxx>
  21. /* Some useful URLs:
  22. Homepage:
  23. http://www.codeblocks.org
  24. File format docs:
  25. http://wiki.codeblocks.org/index.php?title=File_formats_description
  26. http://wiki.codeblocks.org/index.php?title=Workspace_file
  27. http://wiki.codeblocks.org/index.php?title=Project_file
  28. Discussion:
  29. http://forums.codeblocks.org/index.php/topic,6789.0.html
  30. */
  31. //----------------------------------------------------------------------------
  32. void cmExtraCodeBlocksGenerator
  33. ::GetDocumentation(cmDocumentationEntry& entry, const char*) const
  34. {
  35. entry.Name = this->GetName();
  36. entry.Brief = "Generates CodeBlocks project files.";
  37. entry.Full =
  38. "Project files for CodeBlocks will be created in the top directory "
  39. "and in every subdirectory which features a CMakeLists.txt file "
  40. "containing a PROJECT() call. "
  41. "Additionally a hierarchy of makefiles is generated into the "
  42. "build tree. The appropriate make program can build the project through "
  43. "the default make target. A \"make install\" target is also provided.";
  44. }
  45. cmExtraCodeBlocksGenerator::cmExtraCodeBlocksGenerator()
  46. :cmExternalMakefileProjectGenerator()
  47. {
  48. #if defined(_WIN32)
  49. this->SupportedGlobalGenerators.push_back("MinGW Makefiles");
  50. this->SupportedGlobalGenerators.push_back("NMake Makefiles");
  51. // disable until somebody actually tests it:
  52. // this->SupportedGlobalGenerators.push_back("MSYS Makefiles");
  53. #endif
  54. this->SupportedGlobalGenerators.push_back("Unix Makefiles");
  55. }
  56. void cmExtraCodeBlocksGenerator::SetGlobalGenerator(
  57. cmGlobalGenerator* generator)
  58. {
  59. cmExternalMakefileProjectGenerator::SetGlobalGenerator(generator);
  60. cmGlobalUnixMakefileGenerator3* mf = (cmGlobalUnixMakefileGenerator3*)
  61. generator;
  62. mf->SetToolSupportsColor(false);
  63. }
  64. void cmExtraCodeBlocksGenerator::Generate()
  65. {
  66. // for each sub project in the project create a codeblocks project
  67. for (std::map<cmStdString, std::vector<cmLocalGenerator*> >::const_iterator
  68. it = this->GlobalGenerator->GetProjectMap().begin();
  69. it!= this->GlobalGenerator->GetProjectMap().end();
  70. ++it)
  71. {
  72. // create a project file
  73. this->CreateProjectFile(it->second);
  74. }
  75. }
  76. /* create the project file */
  77. void cmExtraCodeBlocksGenerator::CreateProjectFile(
  78. const std::vector<cmLocalGenerator*>& lgs)
  79. {
  80. const cmMakefile* mf=lgs[0]->GetMakefile();
  81. std::string outputDir=mf->GetStartOutputDirectory();
  82. std::string projectName=mf->GetProjectName();
  83. std::string filename=outputDir+"/";
  84. filename+=projectName+".cbp";
  85. std::string sessionFilename=outputDir+"/";
  86. sessionFilename+=projectName+".layout";
  87. this->CreateNewProjectFile(lgs, filename);
  88. }
  89. /* Tree is used to create a "Virtual Folder" in CodeBlocks, in which all
  90. CMake files this project depends on will be put. This means additionally
  91. to the "Sources" and "Headers" virtual folders of CodeBlocks, there will
  92. now also be a "CMake Files" virtual folder.
  93. Patch by Daniel Teske <daniel.teske AT nokia.com> (which use C::B project
  94. files in QtCreator).*/
  95. struct Tree
  96. {
  97. std::string path; //only one component of the path
  98. std::vector<Tree> folders;
  99. std::vector<std::string> files;
  100. void InsertPath(const std::vector<std::string>& splitted,
  101. std::vector<std::string>::size_type start,
  102. const std::string& fileName);
  103. void BuildVirtualFolder(std::string& virtualFolders) const;
  104. void BuildVirtualFolderImpl(std::string& virtualFolders,
  105. const std::string& prefix) const;
  106. void BuildUnit(std::string& unitString, const std::string& fsPath) const;
  107. void BuildUnitImpl(std::string& unitString,
  108. const std::string& virtualFolderPath,
  109. const std::string& fsPath) const;
  110. };
  111. void Tree::InsertPath(const std::vector<std::string>& splitted,
  112. std::vector<std::string>::size_type start,
  113. const std::string& fileName)
  114. {
  115. if (start == splitted.size())
  116. {
  117. files.push_back(fileName);
  118. return;
  119. }
  120. for (std::vector<Tree>::iterator
  121. it = folders.begin();
  122. it != folders.end();
  123. ++it)
  124. {
  125. if ((*it).path == splitted[start])
  126. {
  127. if (start + 1 < splitted.size())
  128. {
  129. it->InsertPath(splitted, start + 1, fileName);
  130. return;
  131. }
  132. else
  133. {
  134. // last part of splitted
  135. it->files.push_back(fileName);
  136. return;
  137. }
  138. }
  139. }
  140. // Not found in folders, thus insert
  141. Tree newFolder;
  142. newFolder.path = splitted[start];
  143. if (start + 1 < splitted.size())
  144. {
  145. newFolder.InsertPath(splitted, start + 1, fileName);
  146. folders.push_back(newFolder);
  147. return;
  148. }
  149. else
  150. {
  151. // last part of splitted
  152. newFolder.files.push_back(fileName);
  153. folders.push_back(newFolder);
  154. return;
  155. }
  156. }
  157. void Tree::BuildVirtualFolder(std::string& virtualFolders) const
  158. {
  159. virtualFolders += "<Option virtualFolders=\"CMake Files\\;";
  160. for (std::vector<Tree>::const_iterator it = folders.begin();
  161. it != folders.end();
  162. ++it)
  163. {
  164. it->BuildVirtualFolderImpl(virtualFolders, "");
  165. }
  166. virtualFolders += "\" />";
  167. }
  168. void Tree::BuildVirtualFolderImpl(std::string& virtualFolders,
  169. const std::string& prefix) const
  170. {
  171. virtualFolders += "CMake Files\\" + prefix + path + "\\;";
  172. for (std::vector<Tree>::const_iterator it = folders.begin();
  173. it != folders.end();
  174. ++it)
  175. {
  176. it->BuildVirtualFolderImpl(virtualFolders, prefix + path + "\\");
  177. }
  178. }
  179. void Tree::BuildUnit(std::string& unitString, const std::string& fsPath) const
  180. {
  181. for (std::vector<std::string>::const_iterator it = files.begin();
  182. it != files.end();
  183. ++it)
  184. {
  185. unitString += " <Unit filename=\"" + fsPath + *it + "\">\n";
  186. unitString += " <Option virtualFolder=\"CMake Files\\\" />\n";
  187. unitString += " </Unit>\n";
  188. }
  189. for (std::vector<Tree>::const_iterator it = folders.begin();
  190. it != folders.end();
  191. ++it)
  192. {
  193. it->BuildUnitImpl(unitString, "", fsPath);
  194. }
  195. }
  196. void Tree::BuildUnitImpl(std::string& unitString,
  197. const std::string& virtualFolderPath,
  198. const std::string& fsPath) const
  199. {
  200. for (std::vector<std::string>::const_iterator it = files.begin();
  201. it != files.end();
  202. ++it)
  203. {
  204. unitString += " <Unit filename=\"" +fsPath+path+ "/" + *it + "\">\n";
  205. unitString += " <Option virtualFolder=\"CMake Files\\"
  206. + virtualFolderPath + path + "\\\" />\n";
  207. unitString += " </Unit>\n";
  208. }
  209. for (std::vector<Tree>::const_iterator it = folders.begin();
  210. it != folders.end();
  211. ++it)
  212. {
  213. it->BuildUnitImpl(unitString,
  214. virtualFolderPath + path + "\\", fsPath + path + "/");
  215. }
  216. }
  217. void cmExtraCodeBlocksGenerator
  218. ::CreateNewProjectFile(const std::vector<cmLocalGenerator*>& lgs,
  219. const std::string& filename)
  220. {
  221. const cmMakefile* mf=lgs[0]->GetMakefile();
  222. cmGeneratedFileStream fout(filename.c_str());
  223. if(!fout)
  224. {
  225. return;
  226. }
  227. Tree tree;
  228. // build tree of virtual folders
  229. for (std::map<cmStdString, std::vector<cmLocalGenerator*> >::const_iterator
  230. it = this->GlobalGenerator->GetProjectMap().begin();
  231. it != this->GlobalGenerator->GetProjectMap().end();
  232. ++it)
  233. {
  234. // Collect all files
  235. std::vector<std::string> listFiles;
  236. for (std::vector<cmLocalGenerator *>::const_iterator
  237. jt = it->second.begin();
  238. jt != it->second.end();
  239. ++jt)
  240. {
  241. const std::vector<std::string> & files =
  242. (*jt)->GetMakefile()->GetListFiles();
  243. listFiles.insert(listFiles.end(), files.begin(), files.end());
  244. }
  245. // Convert
  246. for (std::vector<std::string>::const_iterator jt = listFiles.begin();
  247. jt != listFiles.end();
  248. ++jt)
  249. {
  250. const std::string &relative = cmSystemTools::RelativePath(
  251. it->second[0]->GetMakefile()->GetHomeDirectory(),
  252. jt->c_str());
  253. std::vector<std::string> splitted;
  254. cmSystemTools::SplitPath(relative.c_str(), splitted, false);
  255. // Split filename from path
  256. std::string fileName = *(splitted.end()-1);
  257. splitted.erase(splitted.end() - 1, splitted.end());
  258. // We don't want paths with CMakeFiles in them
  259. // or do we?
  260. // In speedcrunch those where purely internal
  261. if (splitted.size() >= 1
  262. && relative.find("CMakeFiles") == std::string::npos)
  263. {
  264. tree.InsertPath(splitted, 1, fileName);
  265. }
  266. }
  267. }
  268. // Now build a virtual tree string
  269. std::string virtualFolders;
  270. tree.BuildVirtualFolder(virtualFolders);
  271. // And one for <Unit>
  272. std::string unitFiles;
  273. tree.BuildUnit(unitFiles, std::string(mf->GetHomeDirectory()) + "/");
  274. // figure out the compiler
  275. std::string compiler = this->GetCBCompilerId(mf);
  276. std::string make = mf->GetRequiredDefinition("CMAKE_MAKE_PROGRAM");
  277. fout<<"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n"
  278. "<CodeBlocks_project_file>\n"
  279. " <FileVersion major=\"1\" minor=\"6\" />\n"
  280. " <Project>\n"
  281. " <Option title=\"" << mf->GetProjectName()<<"\" />\n"
  282. " <Option makefile_is_custom=\"1\" />\n"
  283. " <Option compiler=\"" << compiler << "\" />\n"
  284. " "<<virtualFolders<<"\n"
  285. " <Build>\n";
  286. this->AppendTarget(fout, "all", 0, make.c_str(), mf, compiler.c_str());
  287. // add all executable and library targets and some of the GLOBAL
  288. // and UTILITY targets
  289. for (std::vector<cmLocalGenerator*>::const_iterator lg=lgs.begin();
  290. lg!=lgs.end(); lg++)
  291. {
  292. cmMakefile* makefile=(*lg)->GetMakefile();
  293. cmTargets& targets=makefile->GetTargets();
  294. for (cmTargets::iterator ti = targets.begin();
  295. ti != targets.end(); ti++)
  296. {
  297. switch(ti->second.GetType())
  298. {
  299. case cmTarget::GLOBAL_TARGET:
  300. {
  301. bool insertTarget = false;
  302. // Only add the global targets from CMAKE_BINARY_DIR,
  303. // not from the subdirs
  304. if (strcmp(makefile->GetStartOutputDirectory(),
  305. makefile->GetHomeOutputDirectory())==0)
  306. {
  307. insertTarget = true;
  308. // only add the "edit_cache" target if it's not ccmake, because
  309. // this will not work within the IDE
  310. if (ti->first == "edit_cache")
  311. {
  312. const char* editCommand = makefile->GetDefinition
  313. ("CMAKE_EDIT_COMMAND");
  314. if (editCommand == 0)
  315. {
  316. insertTarget = false;
  317. }
  318. else if (strstr(editCommand, "ccmake")!=NULL)
  319. {
  320. insertTarget = false;
  321. }
  322. }
  323. }
  324. if (insertTarget)
  325. {
  326. this->AppendTarget(fout, ti->first.c_str(), 0,
  327. make.c_str(), makefile, compiler.c_str());
  328. }
  329. }
  330. break;
  331. case cmTarget::UTILITY:
  332. // Add all utility targets, except the Nightly/Continuous/
  333. // Experimental-"sub"targets as e.g. NightlyStart
  334. if (((ti->first.find("Nightly")==0) &&(ti->first!="Nightly"))
  335. || ((ti->first.find("Continuous")==0)&&(ti->first!="Continuous"))
  336. || ((ti->first.find("Experimental")==0)
  337. && (ti->first!="Experimental")))
  338. {
  339. break;
  340. }
  341. this->AppendTarget(fout, ti->first.c_str(), 0,
  342. make.c_str(), makefile, compiler.c_str());
  343. break;
  344. case cmTarget::EXECUTABLE:
  345. case cmTarget::STATIC_LIBRARY:
  346. case cmTarget::SHARED_LIBRARY:
  347. case cmTarget::MODULE_LIBRARY:
  348. {
  349. this->AppendTarget(fout, ti->first.c_str(), &ti->second,
  350. make.c_str(), makefile, compiler.c_str());
  351. std::string fastTarget = ti->first;
  352. fastTarget += "/fast";
  353. this->AppendTarget(fout, fastTarget.c_str(), &ti->second,
  354. make.c_str(), makefile, compiler.c_str());
  355. }
  356. break;
  357. // ignore these:
  358. case cmTarget::INSTALL_FILES:
  359. case cmTarget::INSTALL_PROGRAMS:
  360. case cmTarget::INSTALL_DIRECTORY:
  361. default:
  362. break;
  363. }
  364. }
  365. }
  366. fout<<" </Build>\n";
  367. // Collect all used source files in the project
  368. // Sort them into two containers, one for C/C++ implementation files
  369. // which may have an acompanying header, one for all other files
  370. std::map<std::string, cmSourceFile*> cFiles;
  371. std::set<std::string> otherFiles;
  372. for (std::vector<cmLocalGenerator*>::const_iterator lg=lgs.begin();
  373. lg!=lgs.end(); lg++)
  374. {
  375. cmMakefile* makefile=(*lg)->GetMakefile();
  376. cmTargets& targets=makefile->GetTargets();
  377. for (cmTargets::iterator ti = targets.begin();
  378. ti != targets.end(); ti++)
  379. {
  380. switch(ti->second.GetType())
  381. {
  382. case cmTarget::EXECUTABLE:
  383. case cmTarget::STATIC_LIBRARY:
  384. case cmTarget::SHARED_LIBRARY:
  385. case cmTarget::MODULE_LIBRARY:
  386. {
  387. const std::vector<cmSourceFile*>&sources=ti->second.GetSourceFiles();
  388. for (std::vector<cmSourceFile*>::const_iterator si=sources.begin();
  389. si!=sources.end(); si++)
  390. {
  391. // check whether it is a C/C++ implementation file
  392. bool isCFile = false;
  393. if ((*si)->GetLanguage() && (*(*si)->GetLanguage() == 'C'))
  394. {
  395. for(std::vector<std::string>::const_iterator
  396. ext = mf->GetSourceExtensions().begin();
  397. ext != mf->GetSourceExtensions().end();
  398. ++ext)
  399. {
  400. if ((*si)->GetExtension() == *ext)
  401. {
  402. isCFile = true;
  403. break;
  404. }
  405. }
  406. }
  407. // then put it accordingly into one of the two containers
  408. if (isCFile)
  409. {
  410. cFiles[(*si)->GetFullPath()] = *si ;
  411. }
  412. else
  413. {
  414. otherFiles.insert((*si)->GetFullPath());
  415. }
  416. }
  417. }
  418. default: // intended fallthrough
  419. break;
  420. }
  421. }
  422. }
  423. // The following loop tries to add header files matching to implementation
  424. // files to the project. It does that by iterating over all source files,
  425. // replacing the file name extension with ".h" and checks whether such a
  426. // file exists. If it does, it is inserted into the map of files.
  427. // A very similar version of that code exists also in the kdevelop
  428. // project generator.
  429. for (std::map<std::string, cmSourceFile*>::const_iterator
  430. sit=cFiles.begin();
  431. sit!=cFiles.end();
  432. ++sit)
  433. {
  434. std::string headerBasename=cmSystemTools::GetFilenamePath(sit->first);
  435. headerBasename+="/";
  436. headerBasename+=cmSystemTools::GetFilenameWithoutExtension(sit->first);
  437. // check if there's a matching header around
  438. for(std::vector<std::string>::const_iterator
  439. ext = mf->GetHeaderExtensions().begin();
  440. ext != mf->GetHeaderExtensions().end();
  441. ++ext)
  442. {
  443. std::string hname=headerBasename;
  444. hname += ".";
  445. hname += *ext;
  446. // if it's already in the set, don't check if it exists on disk
  447. std::set<std::string>::const_iterator headerIt=otherFiles.find(hname);
  448. if (headerIt != otherFiles.end())
  449. {
  450. break;
  451. }
  452. if(cmSystemTools::FileExists(hname.c_str()))
  453. {
  454. otherFiles.insert(hname);
  455. break;
  456. }
  457. }
  458. }
  459. // insert all source files in the CodeBlocks project
  460. // first the C/C++ implementation files, then all others
  461. for (std::map<std::string, cmSourceFile*>::const_iterator
  462. sit=cFiles.begin();
  463. sit!=cFiles.end();
  464. ++sit)
  465. {
  466. fout<<" <Unit filename=\""<< sit->first <<"\">\n"
  467. " </Unit>\n";
  468. }
  469. for (std::set<std::string>::const_iterator
  470. sit=otherFiles.begin();
  471. sit!=otherFiles.end();
  472. ++sit)
  473. {
  474. fout<<" <Unit filename=\""<< sit->c_str() <<"\">\n"
  475. " </Unit>\n";
  476. }
  477. // Add CMakeLists.txt
  478. fout<<unitFiles;
  479. fout<<" </Project>\n"
  480. "</CodeBlocks_project_file>\n";
  481. }
  482. // Generate the xml code for one target.
  483. void cmExtraCodeBlocksGenerator::AppendTarget(cmGeneratedFileStream& fout,
  484. const char* targetName,
  485. cmTarget* target,
  486. const char* make,
  487. const cmMakefile* makefile,
  488. const char* compiler)
  489. {
  490. std::string makefileName = makefile->GetStartOutputDirectory();
  491. makefileName += "/Makefile";
  492. fout<<" <Target title=\"" << targetName << "\">\n";
  493. if (target!=0)
  494. {
  495. int cbTargetType = this->GetCBTargetType(target);
  496. std::string workingDir = makefile->GetStartOutputDirectory();
  497. if ( target->GetType()==cmTarget::EXECUTABLE)
  498. {
  499. // Determine the directory where the executable target is created, and
  500. // set the working directory to this dir.
  501. const char* runtimeOutputDir = makefile->GetDefinition(
  502. "CMAKE_RUNTIME_OUTPUT_DIRECTORY");
  503. if (runtimeOutputDir != 0)
  504. {
  505. workingDir = runtimeOutputDir;
  506. }
  507. else
  508. {
  509. const char* executableOutputDir = makefile->GetDefinition(
  510. "EXECUTABLE_OUTPUT_PATH");
  511. if (executableOutputDir != 0)
  512. {
  513. workingDir = executableOutputDir;
  514. }
  515. }
  516. }
  517. const char* buildType = makefile->GetDefinition("CMAKE_BUILD_TYPE");
  518. fout<<" <Option output=\"" << target->GetLocation(buildType)
  519. << "\" prefix_auto=\"0\" extension_auto=\"0\" />\n"
  520. " <Option working_dir=\"" << workingDir << "\" />\n"
  521. " <Option object_output=\"./\" />\n"
  522. " <Option type=\"" << cbTargetType << "\" />\n"
  523. " <Option compiler=\"" << compiler << "\" />\n"
  524. " <Compiler>\n";
  525. // the include directories for this target
  526. const std::vector<std::string>& incDirs =
  527. target->GetMakefile()->GetIncludeDirectories();
  528. for(std::vector<std::string>::const_iterator dirIt=incDirs.begin();
  529. dirIt != incDirs.end();
  530. ++dirIt)
  531. {
  532. fout <<" <Add directory=\"" << dirIt->c_str() << "\" />\n";
  533. }
  534. fout<<" </Compiler>\n";
  535. }
  536. else // e.g. all and the GLOBAL and UTILITY targets
  537. {
  538. fout<<" <Option working_dir=\""
  539. << makefile->GetStartOutputDirectory() << "\" />\n"
  540. <<" <Option type=\"" << 4 << "\" />\n";
  541. }
  542. fout<<" <MakeCommands>\n"
  543. " <Build command=\""
  544. << this->BuildMakeCommand(make, makefileName.c_str(), targetName)
  545. << "\" />\n"
  546. " <CompileFile command=\""
  547. << this->BuildMakeCommand(make, makefileName.c_str(),"&quot;$file&quot;")
  548. << "\" />\n"
  549. " <Clean command=\""
  550. << this->BuildMakeCommand(make, makefileName.c_str(), "clean")
  551. << "\" />\n"
  552. " <DistClean command=\""
  553. << this->BuildMakeCommand(make, makefileName.c_str(), "clean")
  554. << "\" />\n"
  555. " </MakeCommands>\n"
  556. " </Target>\n";
  557. }
  558. // Translate the cmake compiler id into the CodeBlocks compiler id
  559. std::string cmExtraCodeBlocksGenerator::GetCBCompilerId(const cmMakefile* mf)
  560. {
  561. // figure out which language to use
  562. // for now care only for C and C++
  563. std::string compilerIdVar = "CMAKE_CXX_COMPILER_ID";
  564. if (this->GlobalGenerator->GetLanguageEnabled("CXX") == false)
  565. {
  566. compilerIdVar = "CMAKE_C_COMPILER_ID";
  567. }
  568. std::string hostSystemName = mf->GetSafeDefinition("CMAKE_HOST_SYSTEM_NAME");
  569. std::string systemName = mf->GetSafeDefinition("CMAKE_SYSTEM_NAME");
  570. std::string compilerId = mf->GetSafeDefinition(compilerIdVar.c_str());
  571. std::string compiler = "gcc"; // default to gcc
  572. if (compilerId == "MSVC")
  573. {
  574. compiler = "msvc8";
  575. }
  576. else if (compilerId == "Borland")
  577. {
  578. compiler = "bcc";
  579. }
  580. else if (compilerId == "SDCC")
  581. {
  582. compiler = "sdcc";
  583. }
  584. else if (compilerId == "Intel")
  585. {
  586. compiler = "icc";
  587. }
  588. else if (compilerId == "Watcom")
  589. {
  590. compiler = "ow";
  591. }
  592. else if (compilerId == "GNU")
  593. {
  594. compiler = "gcc";
  595. }
  596. return compiler;
  597. }
  598. // Translate the cmake target type into the CodeBlocks target type id
  599. int cmExtraCodeBlocksGenerator::GetCBTargetType(cmTarget* target)
  600. {
  601. if ( target->GetType()==cmTarget::EXECUTABLE)
  602. {
  603. if ((target->GetPropertyAsBool("WIN32_EXECUTABLE"))
  604. || (target->GetPropertyAsBool("MACOSX_BUNDLE")))
  605. {
  606. return 0;
  607. }
  608. else
  609. {
  610. return 1;
  611. }
  612. }
  613. else if ( target->GetType()==cmTarget::STATIC_LIBRARY)
  614. {
  615. return 2;
  616. }
  617. else if ((target->GetType()==cmTarget::SHARED_LIBRARY)
  618. || (target->GetType()==cmTarget::MODULE_LIBRARY))
  619. {
  620. return 3;
  621. }
  622. return 4;
  623. }
  624. // Create the command line for building the given target using the selected
  625. // make
  626. std::string cmExtraCodeBlocksGenerator::BuildMakeCommand(
  627. const std::string& make, const char* makefile, const char* target)
  628. {
  629. std::string command = make;
  630. if (strcmp(this->GlobalGenerator->GetName(), "NMake Makefiles")==0)
  631. {
  632. std::string makefileName = cmSystemTools::ConvertToOutputPath(makefile);
  633. command += " /NOLOGO /f &quot;";
  634. command += makefileName;
  635. command += "&quot; ";
  636. command += " VERBOSE=1 ";
  637. command += target;
  638. }
  639. else if (strcmp(this->GlobalGenerator->GetName(), "MinGW Makefiles")==0)
  640. {
  641. // no escaping of spaces in this case, see
  642. // http://public.kitware.com/Bug/view.php?id=10014
  643. std::string makefileName = makefile;
  644. command += " -f &quot;";
  645. command += makefileName;
  646. command += "&quot; ";
  647. command += " VERBOSE=1 ";
  648. command += target;
  649. }
  650. else
  651. {
  652. std::string makefileName = cmSystemTools::ConvertToOutputPath(makefile);
  653. command += " -f &quot;";
  654. command += makefileName;
  655. command += "&quot; ";
  656. command += " VERBOSE=1 ";
  657. command += target;
  658. }
  659. return command;
  660. }