cmLocalVisualStudio6Generator.cxx 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #include "cmGlobalGenerator.h"
  11. #include "cmLocalVisualStudio6Generator.h"
  12. #include "cmMakefile.h"
  13. #include "cmSystemTools.h"
  14. #include "cmSourceFile.h"
  15. #include "cmCacheManager.h"
  16. #include "cmGeneratorTarget.h"
  17. #include "cmCustomCommandGenerator.h"
  18. #include "cmake.h"
  19. #include "cmComputeLinkInformation.h"
  20. #include <cmsys/RegularExpression.hxx>
  21. #include <cmsys/FStream.hxx>
  22. cmLocalVisualStudio6Generator::cmLocalVisualStudio6Generator():
  23. cmLocalVisualStudioGenerator(VS6)
  24. {
  25. }
  26. cmLocalVisualStudio6Generator::~cmLocalVisualStudio6Generator()
  27. {
  28. }
  29. //----------------------------------------------------------------------------
  30. // Helper class to write build events.
  31. class cmLocalVisualStudio6Generator::EventWriter
  32. {
  33. public:
  34. EventWriter(cmLocalVisualStudio6Generator* lg,
  35. const std::string& config, std::string& code):
  36. LG(lg), Config(config), Code(code), First(true) {}
  37. void Start(const char* event)
  38. {
  39. this->First = true;
  40. this->Event = event;
  41. }
  42. void Finish()
  43. {
  44. this->Code += (this->First? "" : "\n");
  45. }
  46. void Write(std::vector<cmCustomCommand> const& ccs)
  47. {
  48. for(std::vector<cmCustomCommand>::const_iterator ci = ccs.begin();
  49. ci != ccs.end(); ++ci)
  50. {
  51. this->Write(*ci);
  52. }
  53. }
  54. void Write(cmCustomCommand const& cc)
  55. {
  56. cmCustomCommandGenerator ccg(cc, this->Config, this->LG->GetMakefile());
  57. if(this->First)
  58. {
  59. this->Code += this->Event + "_Cmds=";
  60. this->First = false;
  61. }
  62. else
  63. {
  64. this->Code += "\\\n\t";
  65. }
  66. this->Code += this->LG->ConstructScript(ccg, "\\\n\t");
  67. }
  68. private:
  69. cmLocalVisualStudio6Generator* LG;
  70. std::string Config;
  71. std::string& Code;
  72. bool First;
  73. std::string Event;
  74. };
  75. void cmLocalVisualStudio6Generator::AddHelperCommands()
  76. {
  77. std::set<std::string> lang;
  78. lang.insert("C");
  79. lang.insert("CXX");
  80. this->CreateCustomTargetsAndCommands(lang);
  81. }
  82. void cmLocalVisualStudio6Generator::AddCMakeListsRules()
  83. {
  84. cmTargets &tgts = this->Makefile->GetTargets();
  85. for(cmTargets::iterator l = tgts.begin();
  86. l != tgts.end(); l++)
  87. {
  88. if (l->second.GetType() == cmTarget::INTERFACE_LIBRARY)
  89. {
  90. continue;
  91. }
  92. // Add a rule to regenerate the build system when the target
  93. // specification source changes.
  94. const char* suppRegenRule =
  95. this->Makefile->GetDefinition("CMAKE_SUPPRESS_REGENERATION");
  96. if (!cmSystemTools::IsOn(suppRegenRule))
  97. {
  98. this->AddDSPBuildRule(l->second);
  99. }
  100. }
  101. }
  102. void cmLocalVisualStudio6Generator::Generate()
  103. {
  104. this->OutputDSPFile();
  105. }
  106. void cmLocalVisualStudio6Generator::OutputDSPFile()
  107. {
  108. // If not an in source build, then create the output directory
  109. if(strcmp(this->Makefile->GetStartOutputDirectory(),
  110. this->Makefile->GetHomeDirectory()) != 0)
  111. {
  112. if(!cmSystemTools::MakeDirectory
  113. (this->Makefile->GetStartOutputDirectory()))
  114. {
  115. cmSystemTools::Error("Error creating directory ",
  116. this->Makefile->GetStartOutputDirectory());
  117. }
  118. }
  119. // Create the DSP or set of DSP's for libraries and executables
  120. cmTargets &tgts = this->Makefile->GetTargets();
  121. // build any targets
  122. for(cmTargets::iterator l = tgts.begin();
  123. l != tgts.end(); l++)
  124. {
  125. switch(l->second.GetType())
  126. {
  127. case cmTarget::STATIC_LIBRARY:
  128. case cmTarget::OBJECT_LIBRARY:
  129. this->SetBuildType(STATIC_LIBRARY, l->first.c_str(), l->second);
  130. break;
  131. case cmTarget::SHARED_LIBRARY:
  132. case cmTarget::MODULE_LIBRARY:
  133. this->SetBuildType(DLL, l->first.c_str(), l->second);
  134. break;
  135. case cmTarget::EXECUTABLE:
  136. this->SetBuildType(EXECUTABLE,l->first.c_str(), l->second);
  137. break;
  138. case cmTarget::UTILITY:
  139. case cmTarget::GLOBAL_TARGET:
  140. this->SetBuildType(UTILITY, l->first.c_str(), l->second);
  141. break;
  142. case cmTarget::INTERFACE_LIBRARY:
  143. continue;
  144. default:
  145. cmSystemTools::Error("Bad target type: ", l->first.c_str());
  146. break;
  147. }
  148. // INCLUDE_EXTERNAL_MSPROJECT command only affects the workspace
  149. // so don't build a projectfile for it
  150. const char* path =
  151. l->second.GetProperty("EXTERNAL_MSPROJECT");
  152. if(!path)
  153. {
  154. // check to see if the dsp is going into a sub-directory
  155. std::string::size_type pos = l->first.rfind('/');
  156. if(pos != std::string::npos)
  157. {
  158. std::string dir = this->Makefile->GetStartOutputDirectory();
  159. dir += "/";
  160. dir += l->first.substr(0, pos);
  161. if(!cmSystemTools::MakeDirectory(dir.c_str()))
  162. {
  163. cmSystemTools::Error("Error creating directory: ", dir.c_str());
  164. }
  165. }
  166. this->CreateSingleDSP(l->first.c_str(),l->second);
  167. }
  168. }
  169. }
  170. // Utility function to make a valid VS6 *.dsp filename out
  171. // of a CMake target name:
  172. //
  173. extern std::string GetVS6TargetName(const std::string& targetName);
  174. void cmLocalVisualStudio6Generator::CreateSingleDSP(const std::string& lname,
  175. cmTarget &target)
  176. {
  177. // add to the list of projects
  178. std::string pname = GetVS6TargetName(lname);
  179. // create the dsp.cmake file
  180. std::string fname;
  181. fname = this->Makefile->GetStartOutputDirectory();
  182. fname += "/";
  183. fname += pname;
  184. fname += ".dsp";
  185. // save the name of the real dsp file
  186. std::string realDSP = fname;
  187. fname += ".cmake";
  188. cmsys::ofstream fout(fname.c_str());
  189. if(!fout)
  190. {
  191. cmSystemTools::Error("Error Writing ", fname.c_str());
  192. cmSystemTools::ReportLastSystemError("");
  193. }
  194. this->WriteDSPFile(fout,pname.c_str(),target);
  195. fout.close();
  196. // if the dsp file has changed, then write it.
  197. cmSystemTools::CopyFileIfDifferent(fname.c_str(), realDSP.c_str());
  198. }
  199. void cmLocalVisualStudio6Generator::AddDSPBuildRule(cmTarget& tgt)
  200. {
  201. std::string dspname = GetVS6TargetName(tgt.GetName());
  202. dspname += ".dsp.cmake";
  203. const char* dsprule =
  204. this->Makefile->GetRequiredDefinition("CMAKE_COMMAND");
  205. cmCustomCommandLine commandLine;
  206. commandLine.push_back(dsprule);
  207. std::string makefileIn = this->Makefile->GetStartDirectory();
  208. makefileIn += "/";
  209. makefileIn += "CMakeLists.txt";
  210. if(!cmSystemTools::FileExists(makefileIn.c_str()))
  211. {
  212. return;
  213. }
  214. std::string comment = "Building Custom Rule ";
  215. comment += makefileIn;
  216. std::string args;
  217. args = "-H";
  218. args += this->Convert(this->Makefile->GetHomeDirectory(),
  219. START_OUTPUT, UNCHANGED, true);
  220. commandLine.push_back(args);
  221. args = "-B";
  222. args +=
  223. this->Convert(this->Makefile->GetHomeOutputDirectory(),
  224. START_OUTPUT, UNCHANGED, true);
  225. commandLine.push_back(args);
  226. std::vector<std::string> const& listFiles = this->Makefile->GetListFiles();
  227. cmCustomCommandLines commandLines;
  228. commandLines.push_back(commandLine);
  229. const char* no_working_directory = 0;
  230. this->Makefile->AddCustomCommandToOutput(dspname.c_str(), listFiles,
  231. makefileIn.c_str(), commandLines,
  232. comment.c_str(),
  233. no_working_directory, true);
  234. if(this->Makefile->GetSource(makefileIn.c_str()))
  235. {
  236. tgt.AddSource(makefileIn);
  237. }
  238. else
  239. {
  240. cmSystemTools::Error("Error adding rule for ", makefileIn.c_str());
  241. }
  242. }
  243. void cmLocalVisualStudio6Generator::WriteDSPFile(std::ostream& fout,
  244. const std::string& libName,
  245. cmTarget &target)
  246. {
  247. // For utility targets need custom command since pre- and post-
  248. // build does not do anything in Visual Studio 6. In order for the
  249. // rules to run in the correct order as custom commands, we need
  250. // special care for dependencies. The first rule must depend on all
  251. // the dependencies of all the rules. The later rules must each
  252. // depend only on the previous rule.
  253. if ((target.GetType() == cmTarget::UTILITY ||
  254. target.GetType() == cmTarget::GLOBAL_TARGET) &&
  255. (!target.GetPreBuildCommands().empty() ||
  256. !target.GetPostBuildCommands().empty()))
  257. {
  258. // Accumulate the dependencies of all the commands.
  259. std::vector<std::string> depends;
  260. for (std::vector<cmCustomCommand>::const_iterator cr =
  261. target.GetPreBuildCommands().begin();
  262. cr != target.GetPreBuildCommands().end(); ++cr)
  263. {
  264. depends.insert(depends.end(),
  265. cr->GetDepends().begin(), cr->GetDepends().end());
  266. }
  267. for (std::vector<cmCustomCommand>::const_iterator cr =
  268. target.GetPostBuildCommands().begin();
  269. cr != target.GetPostBuildCommands().end(); ++cr)
  270. {
  271. depends.insert(depends.end(),
  272. cr->GetDepends().begin(), cr->GetDepends().end());
  273. }
  274. // Add the pre- and post-build commands in order.
  275. int count = 1;
  276. for (std::vector<cmCustomCommand>::const_iterator cr =
  277. target.GetPreBuildCommands().begin();
  278. cr != target.GetPreBuildCommands().end(); ++cr)
  279. {
  280. this->AddUtilityCommandHack(target, count++, depends, *cr);
  281. }
  282. for (std::vector<cmCustomCommand>::const_iterator cr =
  283. target.GetPostBuildCommands().begin();
  284. cr != target.GetPostBuildCommands().end(); ++cr)
  285. {
  286. this->AddUtilityCommandHack(target, count++, depends, *cr);
  287. }
  288. }
  289. // We may be modifying the source groups temporarily, so make a copy.
  290. std::vector<cmSourceGroup> sourceGroups = this->Makefile->GetSourceGroups();
  291. // get the classes from the source lists then add them to the groups
  292. std::vector<cmSourceFile*> classes;
  293. if (!target.GetConfigCommonSourceFiles(classes))
  294. {
  295. return;
  296. }
  297. // now all of the source files have been properly assigned to the target
  298. // now stick them into source groups using the reg expressions
  299. for(std::vector<cmSourceFile*>::const_iterator i = classes.begin();
  300. i != classes.end(); i++)
  301. {
  302. if (!(*i)->GetObjectLibrary().empty())
  303. {
  304. continue;
  305. }
  306. // Add the file to the list of sources.
  307. std::string source = (*i)->GetFullPath();
  308. cmSourceGroup* sourceGroup =
  309. this->Makefile->FindSourceGroup(source.c_str(), sourceGroups);
  310. sourceGroup->AssignSource(*i);
  311. // while we are at it, if it is a .rule file then for visual studio 6 we
  312. // must generate it
  313. if ((*i)->GetPropertyAsBool("__CMAKE_RULE"))
  314. {
  315. if(!cmSystemTools::FileExists(source.c_str()))
  316. {
  317. cmSystemTools::ReplaceString(source, "$(IntDir)/", "");
  318. // Make sure the path exists for the file
  319. std::string path = cmSystemTools::GetFilenamePath(source);
  320. cmSystemTools::MakeDirectory(path.c_str());
  321. #if defined(_WIN32) || defined(__CYGWIN__)
  322. cmsys::ofstream sourceFout(source.c_str(),
  323. std::ios::binary | std::ios::out
  324. | std::ios::trunc);
  325. #else
  326. cmsys::ofstream sourceFout(source.c_str(),
  327. std::ios::out | std::ios::trunc);
  328. #endif
  329. if(sourceFout)
  330. {
  331. sourceFout.write("# generated from CMake",22);
  332. sourceFout.flush();
  333. sourceFout.close();
  334. }
  335. }
  336. }
  337. }
  338. // Write the DSP file's header.
  339. this->WriteDSPHeader(fout, libName, target, sourceGroups);
  340. // Loop through every source group.
  341. for(std::vector<cmSourceGroup>::const_iterator sg = sourceGroups.begin();
  342. sg != sourceGroups.end(); ++sg)
  343. {
  344. this->WriteGroup(&(*sg), target, fout, libName);
  345. }
  346. // Write the DSP file's footer.
  347. this->WriteDSPFooter(fout);
  348. }
  349. void cmLocalVisualStudio6Generator
  350. ::WriteGroup(const cmSourceGroup *sg, cmTarget& target,
  351. std::ostream &fout, const std::string& libName)
  352. {
  353. cmGeneratorTarget* gt =
  354. this->GlobalGenerator->GetGeneratorTarget(&target);
  355. const std::vector<const cmSourceFile *> &sourceFiles =
  356. sg->GetSourceFiles();
  357. // If the group is empty, don't write it at all.
  358. if(sourceFiles.empty() && sg->GetGroupChildren().empty())
  359. {
  360. return;
  361. }
  362. // If the group has a name, write the header.
  363. std::string name = sg->GetName();
  364. if(name != "")
  365. {
  366. this->WriteDSPBeginGroup(fout, name.c_str(), "");
  367. }
  368. // Loop through each source in the source group.
  369. for(std::vector<const cmSourceFile *>::const_iterator sf =
  370. sourceFiles.begin(); sf != sourceFiles.end(); ++sf)
  371. {
  372. if (!(*sf)->GetObjectLibrary().empty())
  373. {
  374. continue;
  375. }
  376. std::string source = (*sf)->GetFullPath();
  377. const cmCustomCommand *command =
  378. (*sf)->GetCustomCommand();
  379. std::string compileFlags;
  380. std::vector<std::string> depends;
  381. std::string objectNameDir;
  382. if(gt->HasExplicitObjectName(*sf))
  383. {
  384. objectNameDir = cmSystemTools::GetFilenamePath(gt->GetObjectName(*sf));
  385. }
  386. // Add per-source file flags.
  387. if(const char* cflags = (*sf)->GetProperty("COMPILE_FLAGS"))
  388. {
  389. compileFlags += cflags;
  390. }
  391. const std::string& lang = this->GetSourceFileLanguage(*(*sf));
  392. if(lang == "CXX")
  393. {
  394. // force a C++ file type
  395. compileFlags += " /TP ";
  396. }
  397. else if(lang == "C")
  398. {
  399. // force to c file type
  400. compileFlags += " /TC ";
  401. }
  402. // Add per-source and per-configuration preprocessor definitions.
  403. std::map<std::string, std::string> cdmap;
  404. {
  405. std::set<std::string> targetCompileDefinitions;
  406. this->AppendDefines(targetCompileDefinitions,
  407. (*sf)->GetProperty("COMPILE_DEFINITIONS"));
  408. this->JoinDefines(targetCompileDefinitions, compileFlags, lang);
  409. }
  410. if(const char* cdefs = (*sf)->GetProperty("COMPILE_DEFINITIONS_DEBUG"))
  411. {
  412. std::set<std::string> debugCompileDefinitions;
  413. this->AppendDefines(debugCompileDefinitions, cdefs);
  414. this->JoinDefines(debugCompileDefinitions, cdmap["DEBUG"], lang);
  415. }
  416. if(const char* cdefs = (*sf)->GetProperty("COMPILE_DEFINITIONS_RELEASE"))
  417. {
  418. std::set<std::string> releaseCompileDefinitions;
  419. this->AppendDefines(releaseCompileDefinitions, cdefs);
  420. this->JoinDefines(releaseCompileDefinitions, cdmap["RELEASE"], lang);
  421. }
  422. if(const char* cdefs =
  423. (*sf)->GetProperty("COMPILE_DEFINITIONS_MINSIZEREL"))
  424. {
  425. std::set<std::string> minsizerelCompileDefinitions;
  426. this->AppendDefines(minsizerelCompileDefinitions, cdefs);
  427. this->JoinDefines(minsizerelCompileDefinitions, cdmap["MINSIZEREL"],
  428. lang);
  429. }
  430. if(const char* cdefs =
  431. (*sf)->GetProperty("COMPILE_DEFINITIONS_RELWITHDEBINFO"))
  432. {
  433. std::set<std::string> relwithdebinfoCompileDefinitions;
  434. this->AppendDefines(relwithdebinfoCompileDefinitions, cdefs);
  435. this->JoinDefines(relwithdebinfoCompileDefinitions,
  436. cdmap["RELWITHDEBINFO"], lang);
  437. }
  438. bool excludedFromBuild =
  439. (!lang.empty() && (*sf)->GetPropertyAsBool("HEADER_FILE_ONLY"));
  440. // Check for extra object-file dependencies.
  441. const char* dependsValue = (*sf)->GetProperty("OBJECT_DEPENDS");
  442. if(dependsValue)
  443. {
  444. cmSystemTools::ExpandListArgument(dependsValue, depends);
  445. }
  446. if (GetVS6TargetName(source) != libName ||
  447. target.GetType() == cmTarget::UTILITY ||
  448. target.GetType() == cmTarget::GLOBAL_TARGET)
  449. {
  450. fout << "# Begin Source File\n\n";
  451. // Tell MS-Dev what the source is. If the compiler knows how to
  452. // build it, then it will.
  453. fout << "SOURCE=" <<
  454. this->ConvertToOptionallyRelativeOutputPath(source.c_str()) << "\n\n";
  455. if(!depends.empty())
  456. {
  457. // Write out the dependencies for the rule.
  458. fout << "USERDEP__HACK=";
  459. for(std::vector<std::string>::const_iterator d = depends.begin();
  460. d != depends.end(); ++d)
  461. {
  462. fout << "\\\n\t" <<
  463. this->ConvertToOptionallyRelativeOutputPath(d->c_str());
  464. }
  465. fout << "\n";
  466. }
  467. if (command)
  468. {
  469. const char* flags = compileFlags.size() ? compileFlags.c_str(): 0;
  470. this->WriteCustomRule(fout, source.c_str(), *command, flags);
  471. }
  472. else if(!compileFlags.empty() || !objectNameDir.empty() ||
  473. excludedFromBuild || !cdmap.empty())
  474. {
  475. for(std::vector<std::string>::iterator i
  476. = this->Configurations.begin();
  477. i != this->Configurations.end(); ++i)
  478. {
  479. // Strip the subdirectory name out of the configuration name.
  480. std::string config = this->GetConfigName(*i);
  481. if (i == this->Configurations.begin())
  482. {
  483. fout << "!IF \"$(CFG)\" == " << i->c_str() << std::endl;
  484. }
  485. else
  486. {
  487. fout << "!ELSEIF \"$(CFG)\" == " << i->c_str() << std::endl;
  488. }
  489. if(excludedFromBuild)
  490. {
  491. fout << "# PROP Exclude_From_Build 1\n";
  492. }
  493. if(!compileFlags.empty())
  494. {
  495. fout << "\n# ADD CPP " << compileFlags << "\n\n";
  496. }
  497. std::map<std::string, std::string>::iterator cdi =
  498. cdmap.find(cmSystemTools::UpperCase(config));
  499. if(cdi != cdmap.end() && !cdi->second.empty())
  500. {
  501. fout << "\n# ADD CPP " << cdi->second << "\n\n";
  502. }
  503. if(!objectNameDir.empty())
  504. {
  505. // Setup an alternate object file directory.
  506. fout << "\n# PROP Intermediate_Dir \""
  507. << config << "/" << objectNameDir << "\"\n\n";
  508. }
  509. }
  510. fout << "!ENDIF\n\n";
  511. }
  512. fout << "# End Source File\n";
  513. }
  514. }
  515. std::vector<cmSourceGroup> const& children = sg->GetGroupChildren();
  516. for(unsigned int i=0;i<children.size();++i)
  517. {
  518. this->WriteGroup(&children[i], target, fout, libName);
  519. }
  520. // If the group has a name, write the footer.
  521. if(name != "")
  522. {
  523. this->WriteDSPEndGroup(fout);
  524. }
  525. }
  526. void
  527. cmLocalVisualStudio6Generator
  528. ::AddUtilityCommandHack(cmTarget& target, int count,
  529. std::vector<std::string>& depends,
  530. const cmCustomCommand& origCommand)
  531. {
  532. // Create a fake output that forces the rule to run.
  533. char* output = new char[(strlen(this->Makefile->GetStartOutputDirectory()) +
  534. target.GetName().size() + 30)];
  535. sprintf(output,"%s/%s_force_%i", this->Makefile->GetStartOutputDirectory(),
  536. target.GetName().c_str(), count);
  537. const char* comment = origCommand.GetComment();
  538. if(!comment && origCommand.GetOutputs().empty())
  539. {
  540. comment = "<hack>";
  541. }
  542. // Add the rule with the given dependencies and commands.
  543. std::string no_main_dependency = "";
  544. if(cmSourceFile* outsf =
  545. this->Makefile->AddCustomCommandToOutput(
  546. output, depends, no_main_dependency,
  547. origCommand.GetCommandLines(), comment,
  548. origCommand.GetWorkingDirectory().c_str()))
  549. {
  550. target.AddSource(outsf->GetFullPath());
  551. }
  552. // Replace the dependencies with the output of this rule so that the
  553. // next rule added will run after this one.
  554. depends.clear();
  555. depends.push_back(output);
  556. // Free the fake output name.
  557. delete [] output;
  558. }
  559. void
  560. cmLocalVisualStudio6Generator
  561. ::WriteCustomRule(std::ostream& fout,
  562. const char* source,
  563. const cmCustomCommand& command,
  564. const char* flags)
  565. {
  566. // Write the rule for each configuration.
  567. std::vector<std::string>::iterator i;
  568. for(i = this->Configurations.begin(); i != this->Configurations.end(); ++i)
  569. {
  570. std::string config = this->GetConfigName(*i);
  571. cmCustomCommandGenerator ccg(command, config, this->Makefile);
  572. std::string comment =
  573. this->ConstructComment(ccg, "Building Custom Rule $(InputPath)");
  574. if(comment == "<hack>")
  575. {
  576. comment = "";
  577. }
  578. std::string script =
  579. this->ConstructScript(ccg, "\\\n\t");
  580. if (i == this->Configurations.begin())
  581. {
  582. fout << "!IF \"$(CFG)\" == " << i->c_str() << std::endl;
  583. }
  584. else
  585. {
  586. fout << "!ELSEIF \"$(CFG)\" == " << i->c_str() << std::endl;
  587. }
  588. if(flags)
  589. {
  590. fout << "\n# ADD CPP " << flags << "\n\n";
  591. }
  592. // Write out the dependencies for the rule.
  593. fout << "USERDEP__HACK=";
  594. for(std::vector<std::string>::const_iterator d =
  595. ccg.GetDepends().begin();
  596. d != ccg.GetDepends().end();
  597. ++d)
  598. {
  599. // Lookup the real name of the dependency in case it is a CMake target.
  600. std::string dep;
  601. if(this->GetRealDependency(d->c_str(), config.c_str(), dep))
  602. {
  603. fout << "\\\n\t" <<
  604. this->ConvertToOptionallyRelativeOutputPath(dep.c_str());
  605. }
  606. }
  607. fout << "\n";
  608. fout << "# PROP Ignore_Default_Tool 1\n";
  609. fout << "# Begin Custom Build -";
  610. if(!comment.empty())
  611. {
  612. fout << " " << comment.c_str();
  613. }
  614. fout << "\n\n";
  615. if(ccg.GetOutputs().empty())
  616. {
  617. fout << source
  618. << "_force : \"$(SOURCE)\" \"$(INTDIR)\" \"$(OUTDIR)\"\n\t";
  619. fout << script.c_str() << "\n\n";
  620. }
  621. else
  622. {
  623. for(std::vector<std::string>::const_iterator o =
  624. ccg.GetOutputs().begin();
  625. o != ccg.GetOutputs().end();
  626. ++o)
  627. {
  628. // Write a rule for every output generated by this command.
  629. fout << this->ConvertToOptionallyRelativeOutputPath(o->c_str())
  630. << " : \"$(SOURCE)\" \"$(INTDIR)\" \"$(OUTDIR)\"\n\t";
  631. fout << script.c_str() << "\n\n";
  632. }
  633. }
  634. fout << "# End Custom Build\n\n";
  635. }
  636. fout << "!ENDIF\n\n";
  637. }
  638. void cmLocalVisualStudio6Generator::WriteDSPBeginGroup(std::ostream& fout,
  639. const char* group,
  640. const char* filter)
  641. {
  642. fout << "# Begin Group \"" << group << "\"\n"
  643. "# PROP Default_Filter \"" << filter << "\"\n";
  644. }
  645. void cmLocalVisualStudio6Generator::WriteDSPEndGroup(std::ostream& fout)
  646. {
  647. fout << "# End Group\n";
  648. }
  649. void cmLocalVisualStudio6Generator::SetBuildType(BuildType b,
  650. const std::string& libName,
  651. cmTarget& target)
  652. {
  653. std::string root= this->Makefile->GetRequiredDefinition("CMAKE_ROOT");
  654. const char *def=
  655. this->Makefile->GetDefinition( "MSPROJECT_TEMPLATE_DIRECTORY");
  656. if( def)
  657. {
  658. root = def;
  659. }
  660. else
  661. {
  662. root += "/Templates";
  663. }
  664. switch(b)
  665. {
  666. case WIN32_EXECUTABLE:
  667. break;
  668. case STATIC_LIBRARY:
  669. this->DSPHeaderTemplate = root;
  670. this->DSPHeaderTemplate += "/staticLibHeader.dsptemplate";
  671. this->DSPFooterTemplate = root;
  672. this->DSPFooterTemplate += "/staticLibFooter.dsptemplate";
  673. break;
  674. case DLL:
  675. this->DSPHeaderTemplate = root;
  676. this->DSPHeaderTemplate += "/DLLHeader.dsptemplate";
  677. this->DSPFooterTemplate = root;
  678. this->DSPFooterTemplate += "/DLLFooter.dsptemplate";
  679. break;
  680. case EXECUTABLE:
  681. if ( target.GetPropertyAsBool("WIN32_EXECUTABLE") )
  682. {
  683. this->DSPHeaderTemplate = root;
  684. this->DSPHeaderTemplate += "/EXEWinHeader.dsptemplate";
  685. this->DSPFooterTemplate = root;
  686. this->DSPFooterTemplate += "/EXEFooter.dsptemplate";
  687. }
  688. else
  689. {
  690. this->DSPHeaderTemplate = root;
  691. this->DSPHeaderTemplate += "/EXEHeader.dsptemplate";
  692. this->DSPFooterTemplate = root;
  693. this->DSPFooterTemplate += "/EXEFooter.dsptemplate";
  694. }
  695. break;
  696. case UTILITY:
  697. this->DSPHeaderTemplate = root;
  698. this->DSPHeaderTemplate += "/UtilityHeader.dsptemplate";
  699. this->DSPFooterTemplate = root;
  700. this->DSPFooterTemplate += "/UtilityFooter.dsptemplate";
  701. break;
  702. }
  703. // once the build type is set, determine what configurations are
  704. // possible
  705. cmsys::ifstream fin(this->DSPHeaderTemplate.c_str());
  706. cmsys::RegularExpression reg("# Name ");
  707. if(!fin)
  708. {
  709. cmSystemTools::Error("Error Reading ", this->DSPHeaderTemplate.c_str());
  710. }
  711. // reset this->Configurations
  712. this->Configurations.erase(this->Configurations.begin(),
  713. this->Configurations.end());
  714. // now add all the configurations possible
  715. std::string vs6name = GetVS6TargetName(libName);
  716. std::string line;
  717. while(cmSystemTools::GetLineFromStream(fin, line))
  718. {
  719. cmSystemTools::ReplaceString(line, "OUTPUT_LIBNAME", vs6name.c_str());
  720. if (reg.find(line))
  721. {
  722. this->Configurations.push_back(line.substr(reg.end()));
  723. }
  724. }
  725. }
  726. //----------------------------------------------------------------------------
  727. cmsys::auto_ptr<cmCustomCommand>
  728. cmLocalVisualStudio6Generator::MaybeCreateOutputDir(cmTarget& target,
  729. const std::string& config)
  730. {
  731. cmsys::auto_ptr<cmCustomCommand> pcc;
  732. // VS6 forgets to create the output directory for archives if it
  733. // differs from the intermediate directory.
  734. if(target.GetType() != cmTarget::STATIC_LIBRARY) { return pcc; }
  735. std::string outDir = target.GetDirectory(config, false);
  736. // Add a pre-link event to create the directory.
  737. cmCustomCommandLine command;
  738. command.push_back(this->Makefile->GetRequiredDefinition("CMAKE_COMMAND"));
  739. command.push_back("-E");
  740. command.push_back("make_directory");
  741. command.push_back(outDir);
  742. std::vector<std::string> no_output;
  743. std::vector<std::string> no_depends;
  744. cmCustomCommandLines commands;
  745. commands.push_back(command);
  746. pcc.reset(new cmCustomCommand(0, no_output, no_depends, commands, 0, 0));
  747. pcc->SetEscapeOldStyle(false);
  748. pcc->SetEscapeAllowMakeVars(true);
  749. return pcc;
  750. }
  751. // look for custom rules on a target and collect them together
  752. std::string
  753. cmLocalVisualStudio6Generator::CreateTargetRules(cmTarget &target,
  754. const std::string& configName,
  755. const std::string& /* libName */)
  756. {
  757. if (target.GetType() >= cmTarget::UTILITY )
  758. {
  759. return "";
  760. }
  761. std::string customRuleCode = "# Begin Special Build Tool\n";
  762. EventWriter event(this, configName, customRuleCode);
  763. // Write the pre-build and pre-link together (VS6 does not support both).
  764. event.Start("PreLink");
  765. event.Write(target.GetPreBuildCommands());
  766. event.Write(target.GetPreLinkCommands());
  767. cmsys::auto_ptr<cmCustomCommand> pcc(
  768. this->MaybeCreateImplibDir(target, configName, false));
  769. if(pcc.get())
  770. {
  771. event.Write(*pcc);
  772. }
  773. pcc = this->MaybeCreateOutputDir(target, configName);
  774. if(pcc.get())
  775. {
  776. event.Write(*pcc);
  777. }
  778. event.Finish();
  779. // Write the post-build rules.
  780. event.Start("PostBuild");
  781. event.Write(target.GetPostBuildCommands());
  782. event.Finish();
  783. customRuleCode += "# End Special Build Tool\n";
  784. return customRuleCode;
  785. }
  786. inline std::string removeQuotes(const std::string& s)
  787. {
  788. if(s[0] == '\"' && s[s.size()-1] == '\"')
  789. {
  790. return s.substr(1, s.size()-2);
  791. }
  792. return s;
  793. }
  794. std::string
  795. cmLocalVisualStudio6Generator::GetTargetIncludeOptions(cmTarget &target,
  796. const std::string& config)
  797. {
  798. std::string includeOptions;
  799. // Setup /I and /LIBPATH options for the resulting DSP file. VS 6
  800. // truncates long include paths so make it as short as possible if
  801. // the length threatens this problem.
  802. unsigned int maxIncludeLength = 3000;
  803. bool useShortPath = false;
  804. cmGeneratorTarget* gt =
  805. this->GlobalGenerator->GetGeneratorTarget(&target);
  806. for(int j=0; j < 2; ++j)
  807. {
  808. std::vector<std::string> includes;
  809. this->GetIncludeDirectories(includes, gt, "C", config);
  810. std::vector<std::string>::iterator i;
  811. for(i = includes.begin(); i != includes.end(); ++i)
  812. {
  813. std::string tmp =
  814. this->ConvertToOptionallyRelativeOutputPath(i->c_str());
  815. if(useShortPath)
  816. {
  817. cmSystemTools::GetShortPath(tmp.c_str(), tmp);
  818. }
  819. includeOptions += " /I ";
  820. // quote if not already quoted
  821. if (tmp[0] != '"')
  822. {
  823. includeOptions += "\"";
  824. includeOptions += tmp;
  825. includeOptions += "\"";
  826. }
  827. else
  828. {
  829. includeOptions += tmp;
  830. }
  831. }
  832. if(j == 0 && includeOptions.size() > maxIncludeLength)
  833. {
  834. includeOptions = "";
  835. useShortPath = true;
  836. }
  837. else
  838. {
  839. break;
  840. }
  841. }
  842. return includeOptions;
  843. }
  844. // Code in blocks surrounded by a test for this definition is needed
  845. // only for compatibility with user project's replacement DSP
  846. // templates. The CMake templates no longer use them.
  847. #define CM_USE_OLD_VS6
  848. void cmLocalVisualStudio6Generator
  849. ::WriteDSPHeader(std::ostream& fout,
  850. const std::string& libName, cmTarget &target,
  851. std::vector<cmSourceGroup> &)
  852. {
  853. bool targetBuilds = (target.GetType() >= cmTarget::EXECUTABLE &&
  854. target.GetType() <= cmTarget::MODULE_LIBRARY);
  855. #ifdef CM_USE_OLD_VS6
  856. // Lookup the library and executable output directories.
  857. std::string libPath;
  858. if(this->Makefile->GetDefinition("LIBRARY_OUTPUT_PATH"))
  859. {
  860. libPath = this->Makefile->GetDefinition("LIBRARY_OUTPUT_PATH");
  861. }
  862. std::string exePath;
  863. if(this->Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH"))
  864. {
  865. exePath = this->Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH");
  866. }
  867. // Make sure there are trailing slashes.
  868. if(!libPath.empty())
  869. {
  870. if(libPath[libPath.size()-1] != '/')
  871. {
  872. libPath += "/";
  873. }
  874. }
  875. if(!exePath.empty())
  876. {
  877. if(exePath[exePath.size()-1] != '/')
  878. {
  879. exePath += "/";
  880. }
  881. }
  882. std::set<std::string> pathEmitted;
  883. // determine the link directories
  884. std::string libOptions;
  885. std::string libDebugOptions;
  886. std::string libOptimizedOptions;
  887. std::string libMultiLineOptions;
  888. std::string libMultiLineOptionsForDebug;
  889. std::string libMultiLineDebugOptions;
  890. std::string libMultiLineOptimizedOptions;
  891. if(libPath.size())
  892. {
  893. std::string lpath =
  894. this->ConvertToOptionallyRelativeOutputPath(libPath.c_str());
  895. if(lpath.size() == 0)
  896. {
  897. lpath = ".";
  898. }
  899. std::string lpathIntDir = libPath + "$(INTDIR)";
  900. lpathIntDir =
  901. this->ConvertToOptionallyRelativeOutputPath(lpathIntDir.c_str());
  902. if(pathEmitted.insert(lpath).second)
  903. {
  904. libOptions += " /LIBPATH:";
  905. libOptions += lpathIntDir;
  906. libOptions += " ";
  907. libOptions += " /LIBPATH:";
  908. libOptions += lpath;
  909. libOptions += " ";
  910. libMultiLineOptions += "# ADD LINK32 /LIBPATH:";
  911. libMultiLineOptions += lpathIntDir;
  912. libMultiLineOptions += " ";
  913. libMultiLineOptions += " /LIBPATH:";
  914. libMultiLineOptions += lpath;
  915. libMultiLineOptions += " \n";
  916. libMultiLineOptionsForDebug += "# ADD LINK32 /LIBPATH:";
  917. libMultiLineOptionsForDebug += lpathIntDir;
  918. libMultiLineOptionsForDebug += " ";
  919. libMultiLineOptionsForDebug += " /LIBPATH:";
  920. libMultiLineOptionsForDebug += lpath;
  921. libMultiLineOptionsForDebug += " \n";
  922. }
  923. }
  924. if(exePath.size())
  925. {
  926. std::string lpath =
  927. this->ConvertToOptionallyRelativeOutputPath(exePath.c_str());
  928. if(lpath.size() == 0)
  929. {
  930. lpath = ".";
  931. }
  932. std::string lpathIntDir = exePath + "$(INTDIR)";
  933. lpathIntDir =
  934. this->ConvertToOptionallyRelativeOutputPath(lpathIntDir.c_str());
  935. if(pathEmitted.insert(lpath).second)
  936. {
  937. libOptions += " /LIBPATH:";
  938. libOptions += lpathIntDir;
  939. libOptions += " ";
  940. libOptions += " /LIBPATH:";
  941. libOptions += lpath;
  942. libOptions += " ";
  943. libMultiLineOptions += "# ADD LINK32 /LIBPATH:";
  944. libMultiLineOptions += lpathIntDir;
  945. libMultiLineOptions += " ";
  946. libMultiLineOptions += " /LIBPATH:";
  947. libMultiLineOptions += lpath;
  948. libMultiLineOptions += " \n";
  949. libMultiLineOptionsForDebug += "# ADD LINK32 /LIBPATH:";
  950. libMultiLineOptionsForDebug += lpathIntDir;
  951. libMultiLineOptionsForDebug += " ";
  952. libMultiLineOptionsForDebug += " /LIBPATH:";
  953. libMultiLineOptionsForDebug += lpath;
  954. libMultiLineOptionsForDebug += " \n";
  955. }
  956. }
  957. std::vector<std::string>::const_iterator i;
  958. const std::vector<std::string>& libdirs = target.GetLinkDirectories();
  959. for(i = libdirs.begin(); i != libdirs.end(); ++i)
  960. {
  961. std::string path = *i;
  962. if(path[path.size()-1] != '/')
  963. {
  964. path += "/";
  965. }
  966. std::string lpath =
  967. this->ConvertToOptionallyRelativeOutputPath(path.c_str());
  968. if(lpath.size() == 0)
  969. {
  970. lpath = ".";
  971. }
  972. std::string lpathIntDir = path + "$(INTDIR)";
  973. lpathIntDir =
  974. this->ConvertToOptionallyRelativeOutputPath(lpathIntDir.c_str());
  975. if(pathEmitted.insert(lpath).second)
  976. {
  977. libOptions += " /LIBPATH:";
  978. libOptions += lpathIntDir;
  979. libOptions += " ";
  980. libOptions += " /LIBPATH:";
  981. libOptions += lpath;
  982. libOptions += " ";
  983. libMultiLineOptions += "# ADD LINK32 /LIBPATH:";
  984. libMultiLineOptions += lpathIntDir;
  985. libMultiLineOptions += " ";
  986. libMultiLineOptions += " /LIBPATH:";
  987. libMultiLineOptions += lpath;
  988. libMultiLineOptions += " \n";
  989. libMultiLineOptionsForDebug += "# ADD LINK32 /LIBPATH:";
  990. libMultiLineOptionsForDebug += lpathIntDir;
  991. libMultiLineOptionsForDebug += " ";
  992. libMultiLineOptionsForDebug += " /LIBPATH:";
  993. libMultiLineOptionsForDebug += lpath;
  994. libMultiLineOptionsForDebug += " \n";
  995. }
  996. }
  997. // find link libraries
  998. const cmTarget::LinkLibraryVectorType& libs =
  999. target.GetLinkLibrariesForVS6();
  1000. cmTarget::LinkLibraryVectorType::const_iterator j;
  1001. for(j = libs.begin(); j != libs.end(); ++j)
  1002. {
  1003. // add libraries to executables and dlls (but never include
  1004. // a library in a library, bad recursion)
  1005. // NEVER LINK STATIC LIBRARIES TO OTHER STATIC LIBRARIES
  1006. if ((target.GetType() != cmTarget::SHARED_LIBRARY
  1007. && target.GetType() != cmTarget::STATIC_LIBRARY
  1008. && target.GetType() != cmTarget::MODULE_LIBRARY) ||
  1009. (target.GetType()==cmTarget::SHARED_LIBRARY
  1010. && libName != GetVS6TargetName(j->first)) ||
  1011. (target.GetType()==cmTarget::MODULE_LIBRARY
  1012. && libName != GetVS6TargetName(j->first)))
  1013. {
  1014. // Compute the proper name to use to link this library.
  1015. std::string lib;
  1016. std::string libDebug;
  1017. cmTarget* tgt = this->GlobalGenerator->FindTarget(j->first.c_str());
  1018. if(tgt)
  1019. {
  1020. lib = cmSystemTools::GetFilenameWithoutExtension
  1021. (tgt->GetFullName().c_str());
  1022. libDebug = cmSystemTools::GetFilenameWithoutExtension
  1023. (tgt->GetFullName("Debug").c_str());
  1024. lib += ".lib";
  1025. libDebug += ".lib";
  1026. }
  1027. else
  1028. {
  1029. lib = j->first.c_str();
  1030. libDebug = j->first.c_str();
  1031. if(j->first.find(".lib") == std::string::npos)
  1032. {
  1033. lib += ".lib";
  1034. libDebug += ".lib";
  1035. }
  1036. }
  1037. lib = this->ConvertToOptionallyRelativeOutputPath(lib.c_str());
  1038. libDebug =
  1039. this->ConvertToOptionallyRelativeOutputPath(libDebug.c_str());
  1040. if (j->second == cmTarget::GENERAL)
  1041. {
  1042. libOptions += " ";
  1043. libOptions += lib;
  1044. libMultiLineOptions += "# ADD LINK32 ";
  1045. libMultiLineOptions += lib;
  1046. libMultiLineOptions += "\n";
  1047. libMultiLineOptionsForDebug += "# ADD LINK32 ";
  1048. libMultiLineOptionsForDebug += libDebug;
  1049. libMultiLineOptionsForDebug += "\n";
  1050. }
  1051. if (j->second == cmTarget::DEBUG)
  1052. {
  1053. libDebugOptions += " ";
  1054. libDebugOptions += lib;
  1055. libMultiLineDebugOptions += "# ADD LINK32 ";
  1056. libMultiLineDebugOptions += libDebug;
  1057. libMultiLineDebugOptions += "\n";
  1058. }
  1059. if (j->second == cmTarget::OPTIMIZED)
  1060. {
  1061. libOptimizedOptions += " ";
  1062. libOptimizedOptions += lib;
  1063. libMultiLineOptimizedOptions += "# ADD LINK32 ";
  1064. libMultiLineOptimizedOptions += lib;
  1065. libMultiLineOptimizedOptions += "\n";
  1066. }
  1067. }
  1068. }
  1069. #endif
  1070. // Get include options for this target.
  1071. std::string includeOptionsDebug = this->GetTargetIncludeOptions(target,
  1072. "DEBUG");
  1073. std::string includeOptionsRelease = this->GetTargetIncludeOptions(target,
  1074. "RELEASE");
  1075. std::string includeOptionsRelWithDebInfo = this->GetTargetIncludeOptions(
  1076. target,
  1077. "RELWITHDEBINFO");
  1078. std::string includeOptionsMinSizeRel = this->GetTargetIncludeOptions(target,
  1079. "MINSIZEREL");
  1080. // Get extra linker options for this target type.
  1081. std::string extraLinkOptions;
  1082. std::string extraLinkOptionsDebug;
  1083. std::string extraLinkOptionsRelease;
  1084. std::string extraLinkOptionsMinSizeRel;
  1085. std::string extraLinkOptionsRelWithDebInfo;
  1086. if(target.GetType() == cmTarget::EXECUTABLE)
  1087. {
  1088. extraLinkOptions = this->Makefile->
  1089. GetRequiredDefinition("CMAKE_EXE_LINKER_FLAGS");
  1090. extraLinkOptionsDebug = this->Makefile->
  1091. GetRequiredDefinition("CMAKE_EXE_LINKER_FLAGS_DEBUG");
  1092. extraLinkOptionsRelease = this->Makefile->
  1093. GetRequiredDefinition("CMAKE_EXE_LINKER_FLAGS_RELEASE");
  1094. extraLinkOptionsMinSizeRel = this->Makefile->
  1095. GetRequiredDefinition("CMAKE_EXE_LINKER_FLAGS_MINSIZEREL");
  1096. extraLinkOptionsRelWithDebInfo = this->Makefile->
  1097. GetRequiredDefinition("CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO");
  1098. }
  1099. if(target.GetType() == cmTarget::SHARED_LIBRARY)
  1100. {
  1101. extraLinkOptions = this->Makefile->
  1102. GetRequiredDefinition("CMAKE_SHARED_LINKER_FLAGS");
  1103. extraLinkOptionsDebug = this->Makefile->
  1104. GetRequiredDefinition("CMAKE_SHARED_LINKER_FLAGS_DEBUG");
  1105. extraLinkOptionsRelease = this->Makefile->
  1106. GetRequiredDefinition("CMAKE_SHARED_LINKER_FLAGS_RELEASE");
  1107. extraLinkOptionsMinSizeRel = this->Makefile->
  1108. GetRequiredDefinition("CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL");
  1109. extraLinkOptionsRelWithDebInfo = this->Makefile->
  1110. GetRequiredDefinition("CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO");
  1111. }
  1112. if(target.GetType() == cmTarget::MODULE_LIBRARY)
  1113. {
  1114. extraLinkOptions = this->Makefile->
  1115. GetRequiredDefinition("CMAKE_MODULE_LINKER_FLAGS");
  1116. extraLinkOptionsDebug = this->Makefile->
  1117. GetRequiredDefinition("CMAKE_MODULE_LINKER_FLAGS_DEBUG");
  1118. extraLinkOptionsRelease = this->Makefile->
  1119. GetRequiredDefinition("CMAKE_MODULE_LINKER_FLAGS_RELEASE");
  1120. extraLinkOptionsMinSizeRel = this->Makefile->
  1121. GetRequiredDefinition("CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL");
  1122. extraLinkOptionsRelWithDebInfo = this->Makefile->
  1123. GetRequiredDefinition("CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO");
  1124. }
  1125. // Get extra linker options for this target.
  1126. if(const char* targetLinkFlags = target.GetProperty("LINK_FLAGS"))
  1127. {
  1128. extraLinkOptions += " ";
  1129. extraLinkOptions += targetLinkFlags;
  1130. }
  1131. if(const char* targetLinkFlags = target.GetProperty("LINK_FLAGS_DEBUG"))
  1132. {
  1133. extraLinkOptionsDebug += " ";
  1134. extraLinkOptionsDebug += targetLinkFlags;
  1135. }
  1136. if(const char* targetLinkFlags = target.GetProperty("LINK_FLAGS_RELEASE"))
  1137. {
  1138. extraLinkOptionsRelease += " ";
  1139. extraLinkOptionsRelease += targetLinkFlags;
  1140. }
  1141. if(const char* targetLinkFlags = target.GetProperty("LINK_FLAGS_MINSIZEREL"))
  1142. {
  1143. extraLinkOptionsMinSizeRel += " ";
  1144. extraLinkOptionsMinSizeRel += targetLinkFlags;
  1145. }
  1146. if(const char* targetLinkFlags =
  1147. target.GetProperty("LINK_FLAGS_RELWITHDEBINFO"))
  1148. {
  1149. extraLinkOptionsRelWithDebInfo += " ";
  1150. extraLinkOptionsRelWithDebInfo += targetLinkFlags;
  1151. }
  1152. // Get standard libraries for this language.
  1153. if(targetBuilds)
  1154. {
  1155. // Get the language to use for linking.
  1156. std::vector<std::string> configs;
  1157. target.GetMakefile()->GetConfigurations(configs);
  1158. std::vector<std::string>::const_iterator it = configs.begin();
  1159. const std::string& linkLanguage = target.GetLinkerLanguage(*it);
  1160. for ( ; it != configs.end(); ++it)
  1161. {
  1162. const std::string& configLinkLanguage = target.GetLinkerLanguage(*it);
  1163. if (configLinkLanguage != linkLanguage)
  1164. {
  1165. cmSystemTools::Error
  1166. ("Linker language must not vary by configuration for target: ",
  1167. target.GetName().c_str());
  1168. }
  1169. }
  1170. if(linkLanguage.empty())
  1171. {
  1172. cmSystemTools::Error
  1173. ("CMake can not determine linker language for target: ",
  1174. target.GetName().c_str());
  1175. return;
  1176. }
  1177. // Compute the variable name to lookup standard libraries for this
  1178. // language.
  1179. std::string standardLibsVar = "CMAKE_";
  1180. standardLibsVar += linkLanguage;
  1181. standardLibsVar += "_STANDARD_LIBRARIES";
  1182. // Add standard libraries.
  1183. if(const char* stdLibs =
  1184. this->Makefile->GetDefinition(standardLibsVar.c_str()))
  1185. {
  1186. extraLinkOptions += " ";
  1187. extraLinkOptions += stdLibs;
  1188. }
  1189. }
  1190. // Compute version number information.
  1191. std::string targetVersionFlag;
  1192. if(target.GetType() == cmTarget::EXECUTABLE ||
  1193. target.GetType() == cmTarget::SHARED_LIBRARY ||
  1194. target.GetType() == cmTarget::MODULE_LIBRARY)
  1195. {
  1196. int major;
  1197. int minor;
  1198. target.GetTargetVersion(major, minor);
  1199. cmOStringStream targetVersionStream;
  1200. targetVersionStream << "/version:" << major << "." << minor;
  1201. targetVersionFlag = targetVersionStream.str();
  1202. }
  1203. // Compute the real name of the target.
  1204. std::string outputName =
  1205. "(OUTPUT_NAME is for libraries and executables only)";
  1206. std::string outputNameDebug = outputName;
  1207. std::string outputNameRelease = outputName;
  1208. std::string outputNameMinSizeRel = outputName;
  1209. std::string outputNameRelWithDebInfo = outputName;
  1210. if(target.GetType() == cmTarget::EXECUTABLE ||
  1211. target.GetType() == cmTarget::STATIC_LIBRARY ||
  1212. target.GetType() == cmTarget::SHARED_LIBRARY ||
  1213. target.GetType() == cmTarget::MODULE_LIBRARY)
  1214. {
  1215. outputName = target.GetFullName();
  1216. outputNameDebug = target.GetFullName("Debug");
  1217. outputNameRelease = target.GetFullName("Release");
  1218. outputNameMinSizeRel = target.GetFullName("MinSizeRel");
  1219. outputNameRelWithDebInfo = target.GetFullName("RelWithDebInfo");
  1220. }
  1221. else if(target.GetType() == cmTarget::OBJECT_LIBRARY)
  1222. {
  1223. outputName = target.GetName();
  1224. outputName += ".lib";
  1225. outputNameDebug = outputName;
  1226. outputNameRelease = outputName;
  1227. outputNameMinSizeRel = outputName;
  1228. outputNameRelWithDebInfo = outputName;
  1229. }
  1230. // Compute the output directory for the target.
  1231. std::string outputDirOld;
  1232. std::string outputDirDebug;
  1233. std::string outputDirRelease;
  1234. std::string outputDirMinSizeRel;
  1235. std::string outputDirRelWithDebInfo;
  1236. if(target.GetType() == cmTarget::EXECUTABLE ||
  1237. target.GetType() == cmTarget::STATIC_LIBRARY ||
  1238. target.GetType() == cmTarget::SHARED_LIBRARY ||
  1239. target.GetType() == cmTarget::MODULE_LIBRARY)
  1240. {
  1241. #ifdef CM_USE_OLD_VS6
  1242. outputDirOld =
  1243. removeQuotes(this->ConvertToOptionallyRelativeOutputPath
  1244. (target.GetDirectory().c_str()));
  1245. #endif
  1246. outputDirDebug =
  1247. removeQuotes(this->ConvertToOptionallyRelativeOutputPath(
  1248. target.GetDirectory("Debug").c_str()));
  1249. outputDirRelease =
  1250. removeQuotes(this->ConvertToOptionallyRelativeOutputPath(
  1251. target.GetDirectory("Release").c_str()));
  1252. outputDirMinSizeRel =
  1253. removeQuotes(this->ConvertToOptionallyRelativeOutputPath(
  1254. target.GetDirectory("MinSizeRel").c_str()));
  1255. outputDirRelWithDebInfo =
  1256. removeQuotes(this->ConvertToOptionallyRelativeOutputPath(
  1257. target.GetDirectory("RelWithDebInfo").c_str()));
  1258. }
  1259. else if(target.GetType() == cmTarget::OBJECT_LIBRARY)
  1260. {
  1261. std::string outputDir = cmake::GetCMakeFilesDirectoryPostSlash();
  1262. outputDirDebug = outputDir + "Debug";
  1263. outputDirRelease = outputDir + "Release";
  1264. outputDirMinSizeRel = outputDir + "MinSizeRel";
  1265. outputDirRelWithDebInfo = outputDir + "RelWithDebInfo";
  1266. }
  1267. // Compute the proper link information for the target.
  1268. std::string optionsDebug;
  1269. std::string optionsRelease;
  1270. std::string optionsMinSizeRel;
  1271. std::string optionsRelWithDebInfo;
  1272. if(target.GetType() == cmTarget::EXECUTABLE ||
  1273. target.GetType() == cmTarget::SHARED_LIBRARY ||
  1274. target.GetType() == cmTarget::MODULE_LIBRARY)
  1275. {
  1276. extraLinkOptionsDebug =
  1277. extraLinkOptions + " " + extraLinkOptionsDebug;
  1278. extraLinkOptionsRelease =
  1279. extraLinkOptions + " " + extraLinkOptionsRelease;
  1280. extraLinkOptionsMinSizeRel =
  1281. extraLinkOptions + " " + extraLinkOptionsMinSizeRel;
  1282. extraLinkOptionsRelWithDebInfo =
  1283. extraLinkOptions + " " + extraLinkOptionsRelWithDebInfo;
  1284. this->ComputeLinkOptions(target, "Debug", extraLinkOptionsDebug,
  1285. optionsDebug);
  1286. this->ComputeLinkOptions(target, "Release", extraLinkOptionsRelease,
  1287. optionsRelease);
  1288. this->ComputeLinkOptions(target, "MinSizeRel", extraLinkOptionsMinSizeRel,
  1289. optionsMinSizeRel);
  1290. this->ComputeLinkOptions(target, "RelWithDebInfo",
  1291. extraLinkOptionsRelWithDebInfo,
  1292. optionsRelWithDebInfo);
  1293. }
  1294. // Compute the path of the import library.
  1295. std::string targetImplibFlagDebug;
  1296. std::string targetImplibFlagRelease;
  1297. std::string targetImplibFlagMinSizeRel;
  1298. std::string targetImplibFlagRelWithDebInfo;
  1299. if(target.GetType() == cmTarget::SHARED_LIBRARY ||
  1300. target.GetType() == cmTarget::MODULE_LIBRARY ||
  1301. target.GetType() == cmTarget::EXECUTABLE)
  1302. {
  1303. std::string fullPathImpDebug = target.GetDirectory("Debug", true);
  1304. std::string fullPathImpRelease = target.GetDirectory("Release", true);
  1305. std::string fullPathImpMinSizeRel =
  1306. target.GetDirectory("MinSizeRel", true);
  1307. std::string fullPathImpRelWithDebInfo =
  1308. target.GetDirectory("RelWithDebInfo", true);
  1309. fullPathImpDebug += "/";
  1310. fullPathImpRelease += "/";
  1311. fullPathImpMinSizeRel += "/";
  1312. fullPathImpRelWithDebInfo += "/";
  1313. fullPathImpDebug += target.GetFullName("Debug", true);
  1314. fullPathImpRelease += target.GetFullName("Release", true);
  1315. fullPathImpMinSizeRel += target.GetFullName("MinSizeRel", true);
  1316. fullPathImpRelWithDebInfo += target.GetFullName("RelWithDebInfo", true);
  1317. targetImplibFlagDebug = "/implib:";
  1318. targetImplibFlagRelease = "/implib:";
  1319. targetImplibFlagMinSizeRel = "/implib:";
  1320. targetImplibFlagRelWithDebInfo = "/implib:";
  1321. targetImplibFlagDebug +=
  1322. this->ConvertToOptionallyRelativeOutputPath(fullPathImpDebug.c_str());
  1323. targetImplibFlagRelease +=
  1324. this->ConvertToOptionallyRelativeOutputPath(fullPathImpRelease.c_str());
  1325. targetImplibFlagMinSizeRel +=
  1326. this->ConvertToOptionallyRelativeOutputPath(
  1327. fullPathImpMinSizeRel.c_str());
  1328. targetImplibFlagRelWithDebInfo +=
  1329. this->ConvertToOptionallyRelativeOutputPath(
  1330. fullPathImpRelWithDebInfo.c_str());
  1331. }
  1332. #ifdef CM_USE_OLD_VS6
  1333. // Compute link information for the target.
  1334. if(extraLinkOptions.size())
  1335. {
  1336. libOptions += " ";
  1337. libOptions += extraLinkOptions;
  1338. libOptions += " ";
  1339. libMultiLineOptions += "# ADD LINK32 ";
  1340. libMultiLineOptions += extraLinkOptions;
  1341. libMultiLineOptions += " \n";
  1342. libMultiLineOptionsForDebug += "# ADD LINK32 ";
  1343. libMultiLineOptionsForDebug += extraLinkOptions;
  1344. libMultiLineOptionsForDebug += " \n";
  1345. }
  1346. #endif
  1347. // are there any custom rules on the target itself
  1348. // only if the target is a lib or exe
  1349. std::string customRuleCodeRelease
  1350. = this->CreateTargetRules(target, "RELEASE", libName);
  1351. std::string customRuleCodeDebug
  1352. = this->CreateTargetRules(target, "DEBUG", libName);
  1353. std::string customRuleCodeMinSizeRel
  1354. = this->CreateTargetRules(target, "MINSIZEREL", libName);
  1355. std::string customRuleCodeRelWithDebInfo
  1356. = this->CreateTargetRules(target, "RELWITHDEBINFO", libName);
  1357. cmsys::ifstream fin(this->DSPHeaderTemplate.c_str());
  1358. if(!fin)
  1359. {
  1360. cmSystemTools::Error("Error Reading ", this->DSPHeaderTemplate.c_str());
  1361. }
  1362. std::string staticLibOptions;
  1363. std::string staticLibOptionsDebug;
  1364. std::string staticLibOptionsRelease;
  1365. std::string staticLibOptionsMinSizeRel;
  1366. std::string staticLibOptionsRelWithDebInfo;
  1367. if(target.GetType() == cmTarget::STATIC_LIBRARY )
  1368. {
  1369. const char *libflagsGlobal =
  1370. this->Makefile->GetSafeDefinition("CMAKE_STATIC_LINKER_FLAGS");
  1371. this->AppendFlags(staticLibOptions, libflagsGlobal);
  1372. this->AppendFlags(staticLibOptionsDebug, libflagsGlobal);
  1373. this->AppendFlags(staticLibOptionsRelease, libflagsGlobal);
  1374. this->AppendFlags(staticLibOptionsMinSizeRel, libflagsGlobal);
  1375. this->AppendFlags(staticLibOptionsRelWithDebInfo, libflagsGlobal);
  1376. this->AppendFlags(staticLibOptionsDebug, this->Makefile->
  1377. GetSafeDefinition("CMAKE_STATIC_LINKER_FLAGS_DEBUG"));
  1378. this->AppendFlags(staticLibOptionsRelease, this->Makefile->
  1379. GetSafeDefinition("CMAKE_STATIC_LINKER_FLAGS_RELEASE"));
  1380. this->AppendFlags(staticLibOptionsMinSizeRel, this->Makefile->
  1381. GetSafeDefinition("CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL"));
  1382. this->AppendFlags(staticLibOptionsRelWithDebInfo, this->Makefile->
  1383. GetSafeDefinition("CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO"));
  1384. const char *libflags = target.GetProperty("STATIC_LIBRARY_FLAGS");
  1385. this->AppendFlags(staticLibOptions, libflags);
  1386. this->AppendFlags(staticLibOptionsDebug, libflags);
  1387. this->AppendFlags(staticLibOptionsRelease, libflags);
  1388. this->AppendFlags(staticLibOptionsMinSizeRel, libflags);
  1389. this->AppendFlags(staticLibOptionsRelWithDebInfo, libflags);
  1390. this->AppendFlags(staticLibOptionsDebug,
  1391. target.GetProperty("STATIC_LIBRARY_FLAGS_DEBUG"));
  1392. this->AppendFlags(staticLibOptionsRelease,
  1393. target.GetProperty("STATIC_LIBRARY_FLAGS_RELEASE"));
  1394. this->AppendFlags(staticLibOptionsMinSizeRel,
  1395. target.GetProperty("STATIC_LIBRARY_FLAGS_MINSIZEREL"));
  1396. this->AppendFlags(staticLibOptionsRelWithDebInfo,
  1397. target.GetProperty("STATIC_LIBRARY_FLAGS_RELWITHDEBINFO"));
  1398. std::string objects;
  1399. this->OutputObjects(target, "LIB", objects);
  1400. if(!objects.empty())
  1401. {
  1402. objects = "\n" + objects;
  1403. staticLibOptionsDebug += objects;
  1404. staticLibOptionsRelease += objects;
  1405. staticLibOptionsMinSizeRel += objects;
  1406. staticLibOptionsRelWithDebInfo += objects;
  1407. }
  1408. }
  1409. // Add the export symbol definition for shared library objects.
  1410. std::string exportSymbol;
  1411. if(const char* exportMacro = target.GetExportMacro())
  1412. {
  1413. exportSymbol = exportMacro;
  1414. }
  1415. std::string line;
  1416. std::string libnameExports;
  1417. if(exportSymbol.size())
  1418. {
  1419. libnameExports = "/D \"";
  1420. libnameExports += exportSymbol;
  1421. libnameExports += "\"";
  1422. }
  1423. while(cmSystemTools::GetLineFromStream(fin, line))
  1424. {
  1425. const char* mfcFlag = this->Makefile->GetDefinition("CMAKE_MFC_FLAG");
  1426. if(!mfcFlag)
  1427. {
  1428. mfcFlag = "0";
  1429. }
  1430. cmSystemTools::ReplaceString(line, "OUTPUT_LIBNAME_EXPORTS",
  1431. libnameExports.c_str());
  1432. cmSystemTools::ReplaceString(line, "CMAKE_MFC_FLAG",
  1433. mfcFlag);
  1434. if(target.GetType() == cmTarget::STATIC_LIBRARY ||
  1435. target.GetType() == cmTarget::OBJECT_LIBRARY)
  1436. {
  1437. cmSystemTools::ReplaceString(line, "CM_STATIC_LIB_ARGS_DEBUG",
  1438. staticLibOptionsDebug.c_str());
  1439. cmSystemTools::ReplaceString(line, "CM_STATIC_LIB_ARGS_RELEASE",
  1440. staticLibOptionsRelease.c_str());
  1441. cmSystemTools::ReplaceString(line, "CM_STATIC_LIB_ARGS_MINSIZEREL",
  1442. staticLibOptionsMinSizeRel.c_str());
  1443. cmSystemTools::ReplaceString(line, "CM_STATIC_LIB_ARGS_RELWITHDEBINFO",
  1444. staticLibOptionsRelWithDebInfo.c_str());
  1445. cmSystemTools::ReplaceString(line, "CM_STATIC_LIB_ARGS",
  1446. staticLibOptions.c_str());
  1447. }
  1448. if(this->Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE"))
  1449. {
  1450. cmSystemTools::ReplaceString(line, "/nologo", "");
  1451. }
  1452. #ifdef CM_USE_OLD_VS6
  1453. cmSystemTools::ReplaceString(line, "CM_LIBRARIES",
  1454. libOptions.c_str());
  1455. cmSystemTools::ReplaceString(line, "CM_DEBUG_LIBRARIES",
  1456. libDebugOptions.c_str());
  1457. cmSystemTools::ReplaceString(line, "CM_OPTIMIZED_LIBRARIES",
  1458. libOptimizedOptions.c_str());
  1459. cmSystemTools::ReplaceString(line, "CM_MULTILINE_LIBRARIES_FOR_DEBUG",
  1460. libMultiLineOptionsForDebug.c_str());
  1461. cmSystemTools::ReplaceString(line, "CM_MULTILINE_LIBRARIES",
  1462. libMultiLineOptions.c_str());
  1463. cmSystemTools::ReplaceString(line, "CM_MULTILINE_DEBUG_LIBRARIES",
  1464. libMultiLineDebugOptions.c_str());
  1465. cmSystemTools::ReplaceString(line, "CM_MULTILINE_OPTIMIZED_LIBRARIES",
  1466. libMultiLineOptimizedOptions.c_str());
  1467. #endif
  1468. // Substitute the rules for custom command. When specifying just the
  1469. // target name for the command the command can be different for
  1470. // different configs
  1471. cmSystemTools::ReplaceString(line, "CMAKE_CUSTOM_RULE_CODE_RELEASE",
  1472. customRuleCodeRelease.c_str());
  1473. cmSystemTools::ReplaceString(line, "CMAKE_CUSTOM_RULE_CODE_DEBUG",
  1474. customRuleCodeDebug.c_str());
  1475. cmSystemTools::ReplaceString(line, "CMAKE_CUSTOM_RULE_CODE_MINSIZEREL",
  1476. customRuleCodeMinSizeRel.c_str());
  1477. cmSystemTools::ReplaceString(line, "CMAKE_CUSTOM_RULE_CODE_RELWITHDEBINFO",
  1478. customRuleCodeRelWithDebInfo.c_str());
  1479. // Substitute the real output name into the template.
  1480. cmSystemTools::ReplaceString(line, "OUTPUT_NAME_DEBUG",
  1481. outputNameDebug.c_str());
  1482. cmSystemTools::ReplaceString(line, "OUTPUT_NAME_RELEASE",
  1483. outputNameRelease.c_str());
  1484. cmSystemTools::ReplaceString(line, "OUTPUT_NAME_MINSIZEREL",
  1485. outputNameMinSizeRel.c_str());
  1486. cmSystemTools::ReplaceString(line, "OUTPUT_NAME_RELWITHDEBINFO",
  1487. outputNameRelWithDebInfo.c_str());
  1488. cmSystemTools::ReplaceString(line, "OUTPUT_NAME", outputName.c_str());
  1489. // Substitute the proper link information into the template.
  1490. cmSystemTools::ReplaceString(line, "CM_MULTILINE_OPTIONS_DEBUG",
  1491. optionsDebug.c_str());
  1492. cmSystemTools::ReplaceString(line, "CM_MULTILINE_OPTIONS_RELEASE",
  1493. optionsRelease.c_str());
  1494. cmSystemTools::ReplaceString(line, "CM_MULTILINE_OPTIONS_MINSIZEREL",
  1495. optionsMinSizeRel.c_str());
  1496. cmSystemTools::ReplaceString(line, "CM_MULTILINE_OPTIONS_RELWITHDEBINFO",
  1497. optionsRelWithDebInfo.c_str());
  1498. cmSystemTools::ReplaceString(line, "BUILD_INCLUDES_DEBUG",
  1499. includeOptionsDebug.c_str());
  1500. cmSystemTools::ReplaceString(line, "BUILD_INCLUDES_RELEASE",
  1501. includeOptionsRelease.c_str());
  1502. cmSystemTools::ReplaceString(line, "BUILD_INCLUDES_MINSIZEREL",
  1503. includeOptionsMinSizeRel.c_str());
  1504. cmSystemTools::ReplaceString(line, "BUILD_INCLUDES_RELWITHDEBINFO",
  1505. includeOptionsRelWithDebInfo.c_str());
  1506. cmSystemTools::ReplaceString(line, "TARGET_VERSION_FLAG",
  1507. targetVersionFlag.c_str());
  1508. cmSystemTools::ReplaceString(line, "TARGET_IMPLIB_FLAG_DEBUG",
  1509. targetImplibFlagDebug.c_str());
  1510. cmSystemTools::ReplaceString(line, "TARGET_IMPLIB_FLAG_RELEASE",
  1511. targetImplibFlagRelease.c_str());
  1512. cmSystemTools::ReplaceString(line, "TARGET_IMPLIB_FLAG_MINSIZEREL",
  1513. targetImplibFlagMinSizeRel.c_str());
  1514. cmSystemTools::ReplaceString(line, "TARGET_IMPLIB_FLAG_RELWITHDEBINFO",
  1515. targetImplibFlagRelWithDebInfo.c_str());
  1516. std::string vs6name = GetVS6TargetName(libName);
  1517. cmSystemTools::ReplaceString(line, "OUTPUT_LIBNAME", vs6name.c_str());
  1518. #ifdef CM_USE_OLD_VS6
  1519. // because LIBRARY_OUTPUT_PATH and EXECUTABLE_OUTPUT_PATH
  1520. // are already quoted in the template file,
  1521. // we need to remove the quotes here, we still need
  1522. // to convert to output path for unix to win32 conversion
  1523. cmSystemTools::ReplaceString
  1524. (line, "LIBRARY_OUTPUT_PATH",
  1525. removeQuotes(this->ConvertToOptionallyRelativeOutputPath
  1526. (libPath.c_str())).c_str());
  1527. cmSystemTools::ReplaceString
  1528. (line, "EXECUTABLE_OUTPUT_PATH",
  1529. removeQuotes(this->ConvertToOptionallyRelativeOutputPath
  1530. (exePath.c_str())).c_str());
  1531. #endif
  1532. if(targetBuilds || target.GetType() == cmTarget::OBJECT_LIBRARY)
  1533. {
  1534. cmSystemTools::ReplaceString(line, "OUTPUT_DIRECTORY_DEBUG",
  1535. outputDirDebug.c_str());
  1536. cmSystemTools::ReplaceString(line, "OUTPUT_DIRECTORY_RELEASE",
  1537. outputDirRelease.c_str());
  1538. cmSystemTools::ReplaceString(line, "OUTPUT_DIRECTORY_MINSIZEREL",
  1539. outputDirMinSizeRel.c_str());
  1540. cmSystemTools::ReplaceString(line, "OUTPUT_DIRECTORY_RELWITHDEBINFO",
  1541. outputDirRelWithDebInfo.c_str());
  1542. if(!outputDirOld.empty())
  1543. {
  1544. cmSystemTools::ReplaceString(line, "OUTPUT_DIRECTORY",
  1545. outputDirOld.c_str());
  1546. }
  1547. }
  1548. cmSystemTools::ReplaceString(line,
  1549. "EXTRA_DEFINES",
  1550. this->Makefile->GetDefineFlags());
  1551. const char* debugPostfix
  1552. = this->Makefile->GetDefinition("CMAKE_DEBUG_POSTFIX");
  1553. cmSystemTools::ReplaceString(line, "DEBUG_POSTFIX",
  1554. debugPostfix?debugPostfix:"");
  1555. // store flags for each configuration
  1556. std::string flags = " ";
  1557. std::string flagsRelease = " ";
  1558. std::string flagsMinSizeRel = " ";
  1559. std::string flagsDebug = " ";
  1560. std::string flagsRelWithDebInfo = " ";
  1561. if(target.GetType() >= cmTarget::EXECUTABLE &&
  1562. target.GetType() <= cmTarget::OBJECT_LIBRARY)
  1563. {
  1564. std::vector<std::string> configs;
  1565. target.GetMakefile()->GetConfigurations(configs);
  1566. std::vector<std::string>::const_iterator it = configs.begin();
  1567. const std::string& linkLanguage = target.GetLinkerLanguage(*it);
  1568. for ( ; it != configs.end(); ++it)
  1569. {
  1570. const std::string& configLinkLanguage = target.GetLinkerLanguage(*it);
  1571. if (configLinkLanguage != linkLanguage)
  1572. {
  1573. cmSystemTools::Error
  1574. ("Linker language must not vary by configuration for target: ",
  1575. target.GetName().c_str());
  1576. }
  1577. }
  1578. if(linkLanguage.empty())
  1579. {
  1580. cmSystemTools::Error
  1581. ("CMake can not determine linker language for target: ",
  1582. target.GetName().c_str());
  1583. return;
  1584. }
  1585. // if CXX is on and the target contains cxx code then add the cxx flags
  1586. std::string baseFlagVar = "CMAKE_";
  1587. baseFlagVar += linkLanguage;
  1588. baseFlagVar += "_FLAGS";
  1589. flags = this->Makefile->GetSafeDefinition(baseFlagVar.c_str());
  1590. std::string flagVar = baseFlagVar + "_RELEASE";
  1591. flagsRelease = this->Makefile->GetSafeDefinition(flagVar.c_str());
  1592. flagsRelease += " -DCMAKE_INTDIR=\\\"Release\\\" ";
  1593. flagVar = baseFlagVar + "_MINSIZEREL";
  1594. flagsMinSizeRel = this->Makefile->GetSafeDefinition(flagVar.c_str());
  1595. flagsMinSizeRel += " -DCMAKE_INTDIR=\\\"MinSizeRel\\\" ";
  1596. flagVar = baseFlagVar + "_DEBUG";
  1597. flagsDebug = this->Makefile->GetSafeDefinition(flagVar.c_str());
  1598. flagsDebug += " -DCMAKE_INTDIR=\\\"Debug\\\" ";
  1599. flagVar = baseFlagVar + "_RELWITHDEBINFO";
  1600. flagsRelWithDebInfo = this->Makefile->GetSafeDefinition(flagVar.c_str());
  1601. flagsRelWithDebInfo += " -DCMAKE_INTDIR=\\\"RelWithDebInfo\\\" ";
  1602. this->AddCompileOptions(flags, &target, linkLanguage, "");
  1603. this->AddCompileOptions(flagsDebug, &target, linkLanguage, "Debug");
  1604. this->AddCompileOptions(flagsRelease, &target, linkLanguage, "Release");
  1605. this->AddCompileOptions(flagsMinSizeRel, &target, linkLanguage,
  1606. "MinSizeRel");
  1607. this->AddCompileOptions(flagsRelWithDebInfo, &target, linkLanguage,
  1608. "RelWithDebInfo");
  1609. }
  1610. // if _UNICODE and _SBCS are not found, then add -D_MBCS
  1611. std::string defs = this->Makefile->GetDefineFlags();
  1612. if(flags.find("D_UNICODE") == flags.npos &&
  1613. defs.find("D_UNICODE") == flags.npos &&
  1614. flags.find("D_SBCS") == flags.npos &&
  1615. defs.find("D_SBCS") == flags.npos)
  1616. {
  1617. flags += " /D \"_MBCS\"";
  1618. }
  1619. // Add per-target and per-configuration preprocessor definitions.
  1620. std::set<std::string> definesSet;
  1621. std::set<std::string> debugDefinesSet;
  1622. std::set<std::string> releaseDefinesSet;
  1623. std::set<std::string> minsizeDefinesSet;
  1624. std::set<std::string> debugrelDefinesSet;
  1625. this->AddCompileDefinitions(definesSet, &target, "");
  1626. this->AddCompileDefinitions(debugDefinesSet, &target, "DEBUG");
  1627. this->AddCompileDefinitions(releaseDefinesSet, &target, "RELEASE");
  1628. this->AddCompileDefinitions(minsizeDefinesSet, &target, "MINSIZEREL");
  1629. this->AddCompileDefinitions(debugrelDefinesSet, &target, "RELWITHDEBINFO");
  1630. std::string defines = " ";
  1631. std::string debugDefines = " ";
  1632. std::string releaseDefines = " ";
  1633. std::string minsizeDefines = " ";
  1634. std::string debugrelDefines = " ";
  1635. this->JoinDefines(definesSet, defines, "");
  1636. this->JoinDefines(debugDefinesSet, debugDefines, "");
  1637. this->JoinDefines(releaseDefinesSet, releaseDefines, "");
  1638. this->JoinDefines(minsizeDefinesSet, minsizeDefines, "");
  1639. this->JoinDefines(debugrelDefinesSet, debugrelDefines, "");
  1640. flags += defines;
  1641. flagsDebug += debugDefines;
  1642. flagsRelease += releaseDefines;
  1643. flagsMinSizeRel += minsizeDefines;
  1644. flagsRelWithDebInfo += debugrelDefines;
  1645. // The template files have CXX FLAGS in them, that need to be replaced.
  1646. // There are not separate CXX and C template files, so we use the same
  1647. // variable names. The previous code sets up flags* variables to contain
  1648. // the correct C or CXX flags
  1649. cmSystemTools::ReplaceString(line, "CMAKE_CXX_FLAGS_MINSIZEREL",
  1650. flagsMinSizeRel.c_str());
  1651. cmSystemTools::ReplaceString(line, "CMAKE_CXX_FLAGS_DEBUG",
  1652. flagsDebug.c_str());
  1653. cmSystemTools::ReplaceString(line, "CMAKE_CXX_FLAGS_RELWITHDEBINFO",
  1654. flagsRelWithDebInfo.c_str());
  1655. cmSystemTools::ReplaceString(line, "CMAKE_CXX_FLAGS_RELEASE",
  1656. flagsRelease.c_str());
  1657. cmSystemTools::ReplaceString(line, "CMAKE_CXX_FLAGS", flags.c_str());
  1658. cmSystemTools::ReplaceString(line, "COMPILE_DEFINITIONS_MINSIZEREL",
  1659. minsizeDefines.c_str());
  1660. cmSystemTools::ReplaceString(line, "COMPILE_DEFINITIONS_DEBUG",
  1661. debugDefines.c_str());
  1662. cmSystemTools::ReplaceString(line, "COMPILE_DEFINITIONS_RELWITHDEBINFO",
  1663. debugrelDefines.c_str());
  1664. cmSystemTools::ReplaceString(line, "COMPILE_DEFINITIONS_RELEASE",
  1665. releaseDefines.c_str());
  1666. cmSystemTools::ReplaceString(line, "COMPILE_DEFINITIONS", defines.c_str());
  1667. fout << line.c_str() << std::endl;
  1668. }
  1669. }
  1670. void cmLocalVisualStudio6Generator::WriteDSPFooter(std::ostream& fout)
  1671. {
  1672. cmsys::ifstream fin(this->DSPFooterTemplate.c_str());
  1673. if(!fin)
  1674. {
  1675. cmSystemTools::Error("Error Reading ",
  1676. this->DSPFooterTemplate.c_str());
  1677. }
  1678. std::string line;
  1679. while(cmSystemTools::GetLineFromStream(fin, line))
  1680. {
  1681. fout << line << std::endl;
  1682. }
  1683. }
  1684. //----------------------------------------------------------------------------
  1685. void cmLocalVisualStudio6Generator
  1686. ::ComputeLinkOptions(cmTarget& target,
  1687. const std::string& configName,
  1688. const std::string extraOptions,
  1689. std::string& options)
  1690. {
  1691. // Compute the link information for this configuration.
  1692. cmComputeLinkInformation* pcli = target.GetLinkInformation(configName);
  1693. if(!pcli)
  1694. {
  1695. return;
  1696. }
  1697. cmComputeLinkInformation& cli = *pcli;
  1698. typedef cmComputeLinkInformation::ItemVector ItemVector;
  1699. ItemVector const& linkLibs = cli.GetItems();
  1700. std::vector<std::string> const& linkDirs = cli.GetDirectories();
  1701. this->OutputObjects(target, "LINK", options);
  1702. // Build the link options code.
  1703. for(std::vector<std::string>::const_iterator d = linkDirs.begin();
  1704. d != linkDirs.end(); ++d)
  1705. {
  1706. std::string dir = *d;
  1707. if(!dir.empty())
  1708. {
  1709. if(dir[dir.size()-1] != '/')
  1710. {
  1711. dir += "/";
  1712. }
  1713. dir += "$(IntDir)";
  1714. options += "# ADD LINK32 /LIBPATH:";
  1715. options += this->ConvertToOptionallyRelativeOutputPath(dir.c_str());
  1716. options += " /LIBPATH:";
  1717. options += this->ConvertToOptionallyRelativeOutputPath(d->c_str());
  1718. options += "\n";
  1719. }
  1720. }
  1721. for(ItemVector::const_iterator l = linkLibs.begin();
  1722. l != linkLibs.end(); ++l)
  1723. {
  1724. options += "# ADD LINK32 ";
  1725. if(l->IsPath)
  1726. {
  1727. options +=
  1728. this->ConvertToOptionallyRelativeOutputPath(l->Value.c_str());
  1729. }
  1730. else if (!l->Target
  1731. || l->Target->GetType() != cmTarget::INTERFACE_LIBRARY)
  1732. {
  1733. options += l->Value;
  1734. }
  1735. options += "\n";
  1736. }
  1737. // Add extra options if any.
  1738. if(!extraOptions.empty())
  1739. {
  1740. options += "# ADD LINK32 ";
  1741. options += extraOptions;
  1742. options += "\n";
  1743. }
  1744. }
  1745. //----------------------------------------------------------------------------
  1746. void cmLocalVisualStudio6Generator
  1747. ::OutputObjects(cmTarget& target, const char* tool,
  1748. std::string& options)
  1749. {
  1750. // VS 6 does not support per-config source locations so we
  1751. // list object library content on the link line instead.
  1752. cmGeneratorTarget* gt =
  1753. this->GlobalGenerator->GetGeneratorTarget(&target);
  1754. std::vector<std::string> objs;
  1755. gt->UseObjectLibraries(objs, "");
  1756. for(std::vector<std::string>::const_iterator
  1757. oi = objs.begin(); oi != objs.end(); ++oi)
  1758. {
  1759. options += "# ADD ";
  1760. options += tool;
  1761. options += "32 ";
  1762. options += this->ConvertToOptionallyRelativeOutputPath(oi->c_str());
  1763. options += "\n";
  1764. }
  1765. }
  1766. std::string
  1767. cmLocalVisualStudio6Generator
  1768. ::GetTargetDirectory(cmTarget const&) const
  1769. {
  1770. // No per-target directory for this generator (yet).
  1771. return "";
  1772. }
  1773. //----------------------------------------------------------------------------
  1774. std::string
  1775. cmLocalVisualStudio6Generator
  1776. ::ComputeLongestObjectDirectory(cmTarget&) const
  1777. {
  1778. // Compute the maximum length configuration name.
  1779. std::string config_max;
  1780. for(std::vector<std::string>::const_iterator
  1781. i = this->Configurations.begin();
  1782. i != this->Configurations.end(); ++i)
  1783. {
  1784. // Strip the subdirectory name out of the configuration name.
  1785. std::string config = this->GetConfigName(*i);
  1786. if(config.size() > config_max.size())
  1787. {
  1788. config_max = config;
  1789. }
  1790. }
  1791. // Compute the maximum length full path to the intermediate
  1792. // files directory for any configuration. This is used to construct
  1793. // object file names that do not produce paths that are too long.
  1794. std::string dir_max;
  1795. dir_max += this->Makefile->GetCurrentOutputDirectory();
  1796. dir_max += "/";
  1797. dir_max += config_max;
  1798. dir_max += "/";
  1799. return dir_max;
  1800. }
  1801. std::string
  1802. cmLocalVisualStudio6Generator
  1803. ::GetConfigName(std::string const& configuration) const
  1804. {
  1805. // Strip the subdirectory name out of the configuration name.
  1806. std::string config = configuration;
  1807. std::string::size_type pos = config.find_last_of(" ");
  1808. config = config.substr(pos+1, std::string::npos);
  1809. config = config.substr(0, config.size()-1);
  1810. return config;
  1811. }
  1812. //----------------------------------------------------------------------------
  1813. bool
  1814. cmLocalVisualStudio6Generator
  1815. ::CheckDefinition(std::string const& define) const
  1816. {
  1817. // Perform the standard check first.
  1818. if(!this->cmLocalGenerator::CheckDefinition(define))
  1819. {
  1820. return false;
  1821. }
  1822. // Now do the VS6-specific check.
  1823. if(define.find_first_of(" ") != define.npos &&
  1824. define.find_first_of("\"$;") != define.npos)
  1825. {
  1826. cmOStringStream e;
  1827. e << "WARNING: The VS6 IDE does not support preprocessor definition "
  1828. << "values with spaces and '\"', '$', or ';'.\n"
  1829. << "CMake is dropping a preprocessor definition: " << define << "\n"
  1830. << "Consider defining the macro in a (configured) header file.\n";
  1831. cmSystemTools::Message(e.str().c_str());
  1832. return false;
  1833. }
  1834. // Assume it is supported.
  1835. return true;
  1836. }