cmExtraCodeBlocksGenerator.cxx 23 KB

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