cmLocalVisualStudio7Generator.cxx 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247
  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 "cmGlobalVisualStudio7Generator.h"
  11. #include "cmLocalVisualStudio7Generator.h"
  12. #include "cmXMLParser.h"
  13. #include <cm_expat.h>
  14. #include "cmMakefile.h"
  15. #include "cmSystemTools.h"
  16. #include "cmSourceFile.h"
  17. #include "cmCacheManager.h"
  18. #include "cmGeneratorTarget.h"
  19. #include "cmake.h"
  20. #include "cmComputeLinkInformation.h"
  21. #include "cmGeneratedFileStream.h"
  22. #include <cmsys/System.h>
  23. #include <ctype.h> // for isspace
  24. // Package GUID of Intel Visual Fortran plugin to VS IDE
  25. #define CM_INTEL_PLUGIN_GUID "{B68A201D-CB9B-47AF-A52F-7EEC72E217E4}"
  26. static bool cmLVS6G_IsFAT(const char* dir);
  27. class cmLocalVisualStudio7GeneratorInternals
  28. {
  29. public:
  30. cmLocalVisualStudio7GeneratorInternals(cmLocalVisualStudio7Generator* e):
  31. LocalGenerator(e) {}
  32. typedef cmComputeLinkInformation::ItemVector ItemVector;
  33. void OutputLibraries(std::ostream& fout, ItemVector const& libs);
  34. void OutputObjects(std::ostream& fout, cmTarget* t, const char* isep = 0);
  35. private:
  36. cmLocalVisualStudio7Generator* LocalGenerator;
  37. };
  38. extern cmVS7FlagTable cmLocalVisualStudio7GeneratorFlagTable[];
  39. //----------------------------------------------------------------------------
  40. cmLocalVisualStudio7Generator::cmLocalVisualStudio7Generator(VSVersion v):
  41. cmLocalVisualStudioGenerator(v)
  42. {
  43. this->PlatformName = "Win32";
  44. this->ExtraFlagTable = 0;
  45. this->Internal = new cmLocalVisualStudio7GeneratorInternals(this);
  46. }
  47. cmLocalVisualStudio7Generator::~cmLocalVisualStudio7Generator()
  48. {
  49. delete this->Internal;
  50. }
  51. void cmLocalVisualStudio7Generator::AddHelperCommands()
  52. {
  53. std::set<cmStdString> lang;
  54. lang.insert("C");
  55. lang.insert("CXX");
  56. lang.insert("RC");
  57. lang.insert("IDL");
  58. lang.insert("DEF");
  59. lang.insert("Fortran");
  60. this->CreateCustomTargetsAndCommands(lang);
  61. // Now create GUIDs for targets
  62. cmTargets &tgts = this->Makefile->GetTargets();
  63. cmGlobalVisualStudio7Generator* gg =
  64. static_cast<cmGlobalVisualStudio7Generator *>(this->GlobalGenerator);
  65. for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); l++)
  66. {
  67. const char* path = l->second.GetProperty("EXTERNAL_MSPROJECT");
  68. if(path)
  69. {
  70. this->ReadAndStoreExternalGUID(
  71. l->second.GetName(), path);
  72. }
  73. else
  74. {
  75. gg->CreateGUID(l->first.c_str());
  76. }
  77. }
  78. this->FixGlobalTargets();
  79. }
  80. void cmLocalVisualStudio7Generator::Generate()
  81. {
  82. this->WriteProjectFiles();
  83. this->WriteStampFiles();
  84. }
  85. void cmLocalVisualStudio7Generator::AddCMakeListsRules()
  86. {
  87. cmTargets &tgts = this->Makefile->GetTargets();
  88. // Create the regeneration custom rule.
  89. if(!this->Makefile->IsOn("CMAKE_SUPPRESS_REGENERATION"))
  90. {
  91. // Create a rule to regenerate the build system when the target
  92. // specification source changes.
  93. if(cmSourceFile* sf = this->CreateVCProjBuildRule())
  94. {
  95. // Add the rule to targets that need it.
  96. for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); ++l)
  97. {
  98. if(l->first != CMAKE_CHECK_BUILD_SYSTEM_TARGET)
  99. {
  100. l->second.AddSourceFile(sf);
  101. }
  102. }
  103. }
  104. }
  105. }
  106. void cmLocalVisualStudio7Generator::FixGlobalTargets()
  107. {
  108. // Visual Studio .NET 2003 Service Pack 1 will not run post-build
  109. // commands for targets in which no sources are built. Add dummy
  110. // rules to force these targets to build.
  111. cmTargets &tgts = this->Makefile->GetTargets();
  112. for(cmTargets::iterator l = tgts.begin();
  113. l != tgts.end(); l++)
  114. {
  115. cmTarget& tgt = l->second;
  116. if(tgt.GetType() == cmTarget::GLOBAL_TARGET)
  117. {
  118. std::vector<std::string> no_depends;
  119. cmCustomCommandLine force_command;
  120. force_command.push_back("cd");
  121. force_command.push_back(".");
  122. cmCustomCommandLines force_commands;
  123. force_commands.push_back(force_command);
  124. const char* no_main_dependency = 0;
  125. std::string force = this->Makefile->GetStartOutputDirectory();
  126. force += cmake::GetCMakeFilesDirectory();
  127. force += "/";
  128. force += tgt.GetName();
  129. force += "_force";
  130. this->Makefile->AddCustomCommandToOutput(force.c_str(), no_depends,
  131. no_main_dependency,
  132. force_commands, " ", 0, true);
  133. if(cmSourceFile* file =
  134. this->Makefile->GetSourceFileWithOutput(force.c_str()))
  135. {
  136. tgt.AddSourceFile(file);
  137. }
  138. }
  139. }
  140. }
  141. // TODO
  142. // for CommandLine= need to repleace quotes with &quot
  143. // write out configurations
  144. void cmLocalVisualStudio7Generator::WriteProjectFiles()
  145. {
  146. // If not an in source build, then create the output directory
  147. if(strcmp(this->Makefile->GetStartOutputDirectory(),
  148. this->Makefile->GetHomeDirectory()) != 0)
  149. {
  150. if(!cmSystemTools::MakeDirectory
  151. (this->Makefile->GetStartOutputDirectory()))
  152. {
  153. cmSystemTools::Error("Error creating directory ",
  154. this->Makefile->GetStartOutputDirectory());
  155. }
  156. }
  157. // Get the set of targets in this directory.
  158. cmTargets &tgts = this->Makefile->GetTargets();
  159. // Create the project file for each target.
  160. for(cmTargets::iterator l = tgts.begin();
  161. l != tgts.end(); l++)
  162. {
  163. // INCLUDE_EXTERNAL_MSPROJECT command only affects the workspace
  164. // so don't build a projectfile for it
  165. if(!l->second.GetProperty("EXTERNAL_MSPROJECT"))
  166. {
  167. this->CreateSingleVCProj(l->first.c_str(),l->second);
  168. }
  169. }
  170. }
  171. //----------------------------------------------------------------------------
  172. void cmLocalVisualStudio7Generator::WriteStampFiles()
  173. {
  174. // Touch a timestamp file used to determine when the project file is
  175. // out of date.
  176. std::string stampName = this->Makefile->GetStartOutputDirectory();
  177. stampName += cmake::GetCMakeFilesDirectory();
  178. cmSystemTools::MakeDirectory(stampName.c_str());
  179. stampName += "/";
  180. stampName += "generate.stamp";
  181. std::ofstream stamp(stampName.c_str());
  182. stamp << "# CMake generation timestamp file for this directory.\n";
  183. // Create a helper file so CMake can determine when it is run
  184. // through the rule created by CreateVCProjBuildRule whether it
  185. // really needs to regenerate the project. This file lists its own
  186. // dependencies. If any file listed in it is newer than itself then
  187. // CMake must rerun. Otherwise the project files are up to date and
  188. // the stamp file can just be touched.
  189. std::string depName = stampName;
  190. depName += ".depend";
  191. std::ofstream depFile(depName.c_str());
  192. depFile << "# CMake generation dependency list for this directory.\n";
  193. std::vector<std::string> const& listFiles = this->Makefile->GetListFiles();
  194. for(std::vector<std::string>::const_iterator lf = listFiles.begin();
  195. lf != listFiles.end(); ++lf)
  196. {
  197. depFile << *lf << std::endl;
  198. }
  199. }
  200. //----------------------------------------------------------------------------
  201. void cmLocalVisualStudio7Generator
  202. ::CreateSingleVCProj(const char *lname, cmTarget &target)
  203. {
  204. this->FortranProject =
  205. static_cast<cmGlobalVisualStudioGenerator*>(this->GlobalGenerator)
  206. ->TargetIsFortranOnly(target);
  207. this->WindowsCEProject =
  208. static_cast<cmGlobalVisualStudioGenerator*>(this->GlobalGenerator)
  209. ->TargetsWindowsCE();
  210. // Intel Fortran for VS10 uses VS9 format ".vfproj" files.
  211. VSVersion realVersion = this->Version;
  212. if(this->FortranProject && this->Version >= VS10)
  213. {
  214. this->Version = VS9;
  215. }
  216. // add to the list of projects
  217. std::string pname = lname;
  218. target.SetProperty("GENERATOR_FILE_NAME",lname);
  219. // create the dsp.cmake file
  220. std::string fname;
  221. fname = this->Makefile->GetStartOutputDirectory();
  222. fname += "/";
  223. fname += lname;
  224. if(this->FortranProject)
  225. {
  226. fname += ".vfproj";
  227. }
  228. else
  229. {
  230. fname += ".vcproj";
  231. }
  232. // Generate the project file and replace it atomically with
  233. // copy-if-different. We use a separate timestamp so that the IDE
  234. // does not reload project files unnecessarily.
  235. cmGeneratedFileStream fout(fname.c_str());
  236. fout.SetCopyIfDifferent(true);
  237. this->WriteVCProjFile(fout,lname,target);
  238. if (fout.Close())
  239. {
  240. this->GlobalGenerator->FileReplacedDuringGenerate(fname);
  241. }
  242. this->Version = realVersion;
  243. }
  244. //----------------------------------------------------------------------------
  245. cmSourceFile* cmLocalVisualStudio7Generator::CreateVCProjBuildRule()
  246. {
  247. std::string stampName = this->Makefile->GetCurrentOutputDirectory();
  248. stampName += "/";
  249. stampName += cmake::GetCMakeFilesDirectoryPostSlash();
  250. stampName += "generate.stamp";
  251. const char* dsprule =
  252. this->Makefile->GetRequiredDefinition("CMAKE_COMMAND");
  253. cmCustomCommandLine commandLine;
  254. commandLine.push_back(dsprule);
  255. std::string makefileIn = this->Makefile->GetStartDirectory();
  256. makefileIn += "/";
  257. makefileIn += "CMakeLists.txt";
  258. makefileIn = cmSystemTools::CollapseFullPath(makefileIn.c_str());
  259. if(!cmSystemTools::FileExists(makefileIn.c_str()))
  260. {
  261. return 0;
  262. }
  263. std::string comment = "Building Custom Rule ";
  264. comment += makefileIn;
  265. std::string args;
  266. args = "-H";
  267. args += this->Convert(this->Makefile->GetHomeDirectory(),
  268. START_OUTPUT, UNCHANGED, true);
  269. commandLine.push_back(args);
  270. args = "-B";
  271. args +=
  272. this->Convert(this->Makefile->GetHomeOutputDirectory(),
  273. START_OUTPUT, UNCHANGED, true);
  274. commandLine.push_back(args);
  275. commandLine.push_back("--check-stamp-file");
  276. std::string stampFilename = this->Convert(stampName.c_str(), FULL,
  277. SHELL);
  278. commandLine.push_back(stampFilename.c_str());
  279. std::vector<std::string> const& listFiles = this->Makefile->GetListFiles();
  280. cmCustomCommandLines commandLines;
  281. commandLines.push_back(commandLine);
  282. const char* no_working_directory = 0;
  283. std::string fullpathStampName = this->Convert(stampName.c_str(), FULL,
  284. UNCHANGED);
  285. this->Makefile->AddCustomCommandToOutput(fullpathStampName.c_str(),
  286. listFiles, makefileIn.c_str(),
  287. commandLines, comment.c_str(),
  288. no_working_directory, true);
  289. if(cmSourceFile* file = this->Makefile->GetSource(makefileIn.c_str()))
  290. {
  291. return file;
  292. }
  293. else
  294. {
  295. cmSystemTools::Error("Error adding rule for ", makefileIn.c_str());
  296. return 0;
  297. }
  298. }
  299. void cmLocalVisualStudio7Generator::WriteConfigurations(std::ostream& fout,
  300. const char *libName,
  301. cmTarget &target)
  302. {
  303. std::vector<std::string> *configs =
  304. static_cast<cmGlobalVisualStudio7Generator *>
  305. (this->GlobalGenerator)->GetConfigurations();
  306. fout << "\t<Configurations>\n";
  307. for( std::vector<std::string>::iterator i = configs->begin();
  308. i != configs->end(); ++i)
  309. {
  310. this->WriteConfiguration(fout, i->c_str(), libName, target);
  311. }
  312. fout << "\t</Configurations>\n";
  313. }
  314. cmVS7FlagTable cmLocalVisualStudio7GeneratorFortranFlagTable[] =
  315. {
  316. {"Preprocess", "fpp", "Run Preprocessor on files", "preprocessYes", 0},
  317. {"SuppressStartupBanner", "nologo", "SuppressStartupBanner", "true", 0},
  318. {"SourceFileFormat", "fixed", "Use Fixed Format", "fileFormatFixed", 0},
  319. {"SourceFileFormat", "free", "Use Free Format", "fileFormatFree", 0},
  320. {"DebugInformationFormat", "Zi", "full debug", "debugEnabled", 0},
  321. {"DebugInformationFormat", "debug:full", "full debug", "debugEnabled", 0},
  322. {"DebugInformationFormat", "Z7", "c7 compat", "debugOldStyleInfo", 0},
  323. {"DebugInformationFormat", "Zd", "line numbers", "debugLineInfoOnly", 0},
  324. {"Optimization", "Od", "disable optimization", "optimizeDisabled", 0},
  325. {"Optimization", "O1", "min space", "optimizeMinSpace", 0},
  326. {"Optimization", "O3", "full optimize", "optimizeFull", 0},
  327. {"GlobalOptimizations", "Og", "global optimize", "true", 0},
  328. {"InlineFunctionExpansion", "Ob0", "", "expandDisable", 0},
  329. {"InlineFunctionExpansion", "Ob1", "", "expandOnlyInline", 0},
  330. {"FavorSizeOrSpeed", "Os", "", "favorSize", 0},
  331. {"OmitFramePointers", "Oy-", "", "false", 0},
  332. {"OptimizeForProcessor", "GB", "", "procOptimizeBlended", 0},
  333. {"OptimizeForProcessor", "G5", "", "procOptimizePentium", 0},
  334. {"OptimizeForProcessor", "G6", "", "procOptimizePentiumProThruIII", 0},
  335. {"UseProcessorExtensions", "QzxK", "", "codeForStreamingSIMD", 0},
  336. {"OptimizeForProcessor", "QaxN", "", "codeForPentium4", 0},
  337. {"OptimizeForProcessor", "QaxB", "", "codeForPentiumM", 0},
  338. {"OptimizeForProcessor", "QaxP", "", "codeForCodeNamedPrescott", 0},
  339. {"OptimizeForProcessor", "QaxT", "", "codeForCore2Duo", 0},
  340. {"OptimizeForProcessor", "QxK", "", "codeExclusivelyStreamingSIMD", 0},
  341. {"OptimizeForProcessor", "QxN", "", "codeExclusivelyPentium4", 0},
  342. {"OptimizeForProcessor", "QxB", "", "codeExclusivelyPentiumM", 0},
  343. {"OptimizeForProcessor", "QxP", "", "codeExclusivelyCodeNamedPrescott", 0},
  344. {"OptimizeForProcessor", "QxT", "", "codeExclusivelyCore2Duo", 0},
  345. {"OptimizeForProcessor", "QxO", "", "codeExclusivelyCore2StreamingSIMD", 0},
  346. {"OptimizeForProcessor", "QxS", "", "codeExclusivelyCore2StreamingSIMD4", 0},
  347. {"ModulePath", "module:", "", "",
  348. cmVS7FlagTable::UserValueRequired},
  349. {"LoopUnrolling", "Qunroll:", "", "",
  350. cmVS7FlagTable::UserValueRequired},
  351. {"AutoParallelThreshold", "Qpar-threshold:", "", "",
  352. cmVS7FlagTable::UserValueRequired},
  353. {"HeapArrays", "heap-arrays:", "", "",
  354. cmVS7FlagTable::UserValueRequired},
  355. {"ObjectText", "bintext:", "", "",
  356. cmVS7FlagTable::UserValueRequired},
  357. {"Parallelization", "Qparallel", "", "true", 0},
  358. {"PrefetchInsertion", "Qprefetch-", "", "false", 0},
  359. {"BufferedIO", "assume:buffered_io", "", "true", 0},
  360. {"CallingConvention", "iface:stdcall", "", "callConventionStdCall", 0},
  361. {"CallingConvention", "iface:cref", "", "callConventionCRef", 0},
  362. {"CallingConvention", "iface:stdref", "", "callConventionStdRef", 0},
  363. {"CallingConvention", "iface:stdcall", "", "callConventionStdCall", 0},
  364. {"CallingConvention", "iface:cvf", "", "callConventionCVF", 0},
  365. {"EnableRecursion", "recursive", "", "true", 0},
  366. {"ReentrantCode", "reentrancy", "", "true", 0},
  367. // done up to Language
  368. {0,0,0,0,0}
  369. };
  370. // fill the table here currently the comment field is not used for
  371. // anything other than documentation NOTE: Make sure the longer
  372. // commandFlag comes FIRST!
  373. cmVS7FlagTable cmLocalVisualStudio7GeneratorFlagTable[] =
  374. {
  375. // option flags (some flags map to the same option)
  376. {"BasicRuntimeChecks", "GZ", "Stack frame checks", "1", 0},
  377. {"BasicRuntimeChecks", "RTCsu",
  378. "Both stack and uninitialized checks", "3", 0},
  379. {"BasicRuntimeChecks", "RTCs", "Stack frame checks", "1", 0},
  380. {"BasicRuntimeChecks", "RTCu", "Uninitialized Variables ", "2", 0},
  381. {"BasicRuntimeChecks", "RTC1",
  382. "Both stack and uninitialized checks", "3", 0},
  383. {"DebugInformationFormat", "Z7", "debug format", "1", 0},
  384. {"DebugInformationFormat", "Zd", "debug format", "2", 0},
  385. {"DebugInformationFormat", "Zi", "debug format", "3", 0},
  386. {"DebugInformationFormat", "ZI", "debug format", "4", 0},
  387. {"EnableEnhancedInstructionSet", "arch:SSE2",
  388. "Use sse2 instructions", "2", 0},
  389. {"EnableEnhancedInstructionSet", "arch:SSE",
  390. "Use sse instructions", "1", 0},
  391. {"FloatingPointModel", "fp:precise",
  392. "Use precise floating point model", "0", 0},
  393. {"FloatingPointModel", "fp:strict",
  394. "Use strict floating point model", "1", 0},
  395. {"FloatingPointModel", "fp:fast", "Use fast floating point model", "2", 0},
  396. {"FavorSizeOrSpeed", "Ot", "Favor fast code", "1", 0},
  397. {"FavorSizeOrSpeed", "Os", "Favor small code", "2", 0},
  398. {"CompileAs", "TC", "Compile as c code", "1", 0},
  399. {"CompileAs", "TP", "Compile as c++ code", "2", 0},
  400. {"Optimization", "Od", "Non Debug", "0", 0},
  401. {"Optimization", "O1", "Min Size", "1", 0},
  402. {"Optimization", "O2", "Max Speed", "2", 0},
  403. {"Optimization", "Ox", "Max Optimization", "3", 0},
  404. {"OptimizeForProcessor", "GB", "Blended processor mode", "0", 0},
  405. {"OptimizeForProcessor", "G5", "Pentium", "1", 0},
  406. {"OptimizeForProcessor", "G6", "PPro PII PIII", "2", 0},
  407. {"OptimizeForProcessor", "G7", "Pentium 4 or Athlon", "3", 0},
  408. {"InlineFunctionExpansion", "Ob0", "no inlines", "0", 0},
  409. {"InlineFunctionExpansion", "Ob1", "when inline keyword", "1", 0},
  410. {"InlineFunctionExpansion", "Ob2", "any time you can inline", "2", 0},
  411. {"RuntimeLibrary", "MTd", "Multithreaded debug", "1", 0},
  412. {"RuntimeLibrary", "MT", "Multithreaded", "0", 0},
  413. {"RuntimeLibrary", "MDd", "Multithreaded dll debug", "3", 0},
  414. {"RuntimeLibrary", "MD", "Multithreaded dll", "2", 0},
  415. {"RuntimeLibrary", "MLd", "Single Thread debug", "5", 0},
  416. {"RuntimeLibrary", "ML", "Single Thread", "4", 0},
  417. {"StructMemberAlignment", "Zp16", "struct align 16 byte ", "5", 0},
  418. {"StructMemberAlignment", "Zp1", "struct align 1 byte ", "1", 0},
  419. {"StructMemberAlignment", "Zp2", "struct align 2 byte ", "2", 0},
  420. {"StructMemberAlignment", "Zp4", "struct align 4 byte ", "3", 0},
  421. {"StructMemberAlignment", "Zp8", "struct align 8 byte ", "4", 0},
  422. {"WarningLevel", "W0", "Warning level", "0", 0},
  423. {"WarningLevel", "W1", "Warning level", "1", 0},
  424. {"WarningLevel", "W2", "Warning level", "2", 0},
  425. {"WarningLevel", "W3", "Warning level", "3", 0},
  426. {"WarningLevel", "W4", "Warning level", "4", 0},
  427. {"DisableSpecificWarnings", "wd", "Disable specific warnings", "",
  428. cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable},
  429. // Precompiled header and related options. Note that the
  430. // UsePrecompiledHeader entries are marked as "Continue" so that the
  431. // corresponding PrecompiledHeaderThrough entry can be found.
  432. {"UsePrecompiledHeader", "Yc", "Create Precompiled Header", "1",
  433. cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue},
  434. {"PrecompiledHeaderThrough", "Yc", "Precompiled Header Name", "",
  435. cmVS7FlagTable::UserValueRequired},
  436. {"PrecompiledHeaderFile", "Fp", "Generated Precompiled Header", "",
  437. cmVS7FlagTable::UserValue},
  438. // The YX and Yu options are in a per-global-generator table because
  439. // their values differ based on the VS IDE version.
  440. {"ForcedIncludeFiles", "FI", "Forced include files", "",
  441. cmVS7FlagTable::UserValueRequired | cmVS7FlagTable::SemicolonAppendable},
  442. {"AssemblerListingLocation", "Fa", "ASM List Location", "",
  443. cmVS7FlagTable::UserValue},
  444. // boolean flags
  445. {"BufferSecurityCheck", "GS", "Buffer security check", "TRUE", 0},
  446. {"BufferSecurityCheck", "GS-", "Turn off Buffer security check", "FALSE", 0},
  447. {"Detect64BitPortabilityProblems", "Wp64",
  448. "Detect 64-bit Portability Problems", "TRUE", 0},
  449. {"EnableFiberSafeOptimizations", "GT", "Enable Fiber-safe Optimizations",
  450. "TRUE", 0},
  451. {"EnableFunctionLevelLinking", "Gy",
  452. "EnableFunctionLevelLinking", "TRUE", 0},
  453. {"EnableIntrinsicFunctions", "Oi", "EnableIntrinsicFunctions", "TRUE", 0},
  454. {"GlobalOptimizations", "Og", "Global Optimize", "TRUE", 0},
  455. {"ImproveFloatingPointConsistency", "Op",
  456. "ImproveFloatingPointConsistency", "TRUE", 0},
  457. {"MinimalRebuild", "Gm", "minimal rebuild", "TRUE", 0},
  458. {"OmitFramePointers", "Oy", "OmitFramePointers", "TRUE", 0},
  459. {"OptimizeForWindowsApplication", "GA", "Optimize for windows", "TRUE", 0},
  460. {"RuntimeTypeInfo", "GR",
  461. "Turn on Run time type information for c++", "TRUE", 0},
  462. {"RuntimeTypeInfo", "GR-",
  463. "Turn off Run time type information for c++", "FALSE", 0},
  464. {"SmallerTypeCheck", "RTCc", "smaller type check", "TRUE", 0},
  465. {"SuppressStartupBanner", "nologo", "SuppressStartupBanner", "TRUE", 0},
  466. {"WholeProgramOptimization", "GL",
  467. "Enables whole program optimization", "TRUE", 0},
  468. {"WholeProgramOptimization", "GL-",
  469. "Disables whole program optimization", "FALSE", 0},
  470. {"WarnAsError", "WX", "Treat warnings as errors", "TRUE", 0},
  471. {"BrowseInformation", "FR", "Generate browse information", "1", 0},
  472. {"StringPooling", "GF", "Enable StringPooling", "TRUE", 0},
  473. {0,0,0,0,0}
  474. };
  475. cmVS7FlagTable cmLocalVisualStudio7GeneratorLinkFlagTable[] =
  476. {
  477. // option flags (some flags map to the same option)
  478. {"GenerateManifest", "MANIFEST:NO",
  479. "disable manifest generation", "FALSE", 0},
  480. {"GenerateManifest", "MANIFEST", "enable manifest generation", "TRUE", 0},
  481. {"LinkIncremental", "INCREMENTAL:NO", "link incremental", "1", 0},
  482. {"LinkIncremental", "INCREMENTAL:YES", "link incremental", "2", 0},
  483. {"CLRUnmanagedCodeCheck", "CLRUNMANAGEDCODECHECK:NO", "", "false", 0},
  484. {"CLRUnmanagedCodeCheck", "CLRUNMANAGEDCODECHECK", "", "true", 0},
  485. {"DataExecutionPrevention", "NXCOMPAT:NO",
  486. "Not known to work with Windows Data Execution Prevention", "1", 0},
  487. {"DataExecutionPrevention", "NXCOMPAT",
  488. "Known to work with Windows Data Execution Prevention", "2", 0},
  489. {"DelaySign", "DELAYSIGN:NO", "", "false", 0},
  490. {"DelaySign", "DELAYSIGN", "", "true", 0},
  491. {"EntryPointSymbol", "ENTRY:", "sets the starting address", "",
  492. cmVS7FlagTable::UserValue},
  493. {"IgnoreDefaultLibraryNames", "NODEFAULTLIB:", "default libs to ignore", "",
  494. cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable},
  495. {"IgnoreAllDefaultLibraries", "NODEFAULTLIB", "ignore all default libs",
  496. "TRUE", 0},
  497. {"FixedBaseAddress", "FIXED:NO", "Generate a relocation section", "1", 0},
  498. {"FixedBaseAddress", "FIXED", "Image must be loaded at a fixed address",
  499. "2", 0},
  500. {"EnableCOMDATFolding", "OPT:NOICF", "Do not remove redundant COMDATs",
  501. "1", 0},
  502. {"EnableCOMDATFolding", "OPT:ICF", "Remove redundant COMDATs", "2", 0},
  503. {"ResourceOnlyDLL", "NOENTRY", "Create DLL with no entry point", "true", 0},
  504. {"OptimizeReferences", "OPT:NOREF", "Keep unreferenced data", "1", 0},
  505. {"OptimizeReferences", "OPT:REF", "Eliminate unreferenced data", "2", 0},
  506. {"Profile", "PROFILE", "", "true", 0},
  507. {"RandomizedBaseAddress", "DYNAMICBASE:NO",
  508. "Image may not be rebased at load-time", "1", 0},
  509. {"RandomizedBaseAddress", "DYNAMICBASE",
  510. "Image may be rebased at load-time", "2", 0},
  511. {"SetChecksum", "RELEASE", "Enable setting checksum in header", "true", 0},
  512. {"SupportUnloadOfDelayLoadedDLL", "DELAY:UNLOAD", "", "true", 0},
  513. {"TargetMachine", "MACHINE:I386", "Machine x86", "1", 0},
  514. {"TargetMachine", "MACHINE:X86", "Machine x86", "1", 0},
  515. {"TargetMachine", "MACHINE:AM33", "Machine AM33", "2", 0},
  516. {"TargetMachine", "MACHINE:ARM", "Machine ARM", "3", 0},
  517. {"TargetMachine", "MACHINE:EBC", "Machine EBC", "4", 0},
  518. {"TargetMachine", "MACHINE:IA64", "Machine IA64", "5", 0},
  519. {"TargetMachine", "MACHINE:M32R", "Machine M32R", "6", 0},
  520. {"TargetMachine", "MACHINE:MIPS", "Machine MIPS", "7", 0},
  521. {"TargetMachine", "MACHINE:MIPS16", "Machine MIPS16", "8", 0},
  522. {"TargetMachine", "MACHINE:MIPSFPU)", "Machine MIPSFPU", "9", 0},
  523. {"TargetMachine", "MACHINE:MIPSFPU16", "Machine MIPSFPU16", "10", 0},
  524. {"TargetMachine", "MACHINE:MIPSR41XX", "Machine MIPSR41XX", "11", 0},
  525. {"TargetMachine", "MACHINE:SH3", "Machine SH3", "12", 0},
  526. {"TargetMachine", "MACHINE:SH3DSP", "Machine SH3DSP", "13", 0},
  527. {"TargetMachine", "MACHINE:SH4", "Machine SH4", "14", 0},
  528. {"TargetMachine", "MACHINE:SH5", "Machine SH5", "15", 0},
  529. {"TargetMachine", "MACHINE:THUMB", "Machine THUMB", "16", 0},
  530. {"TargetMachine", "MACHINE:X64", "Machine x64", "17", 0},
  531. {"TurnOffAssemblyGeneration", "NOASSEMBLY",
  532. "No assembly even if CLR information is present in objects.", "true", 0},
  533. {"ModuleDefinitionFile", "DEF:", "add an export def file", "",
  534. cmVS7FlagTable::UserValue},
  535. {"GenerateMapFile", "MAP", "enable generation of map file", "TRUE", 0},
  536. {0,0,0,0,0}
  537. };
  538. //----------------------------------------------------------------------------
  539. // Helper class to write build event <Tool .../> elements.
  540. class cmLocalVisualStudio7Generator::EventWriter
  541. {
  542. public:
  543. EventWriter(cmLocalVisualStudio7Generator* lg,
  544. const char* config, std::ostream& os):
  545. LG(lg), Config(config), Stream(os), First(true) {}
  546. void Start(const char* tool)
  547. {
  548. this->First = true;
  549. this->Stream << "\t\t\t<Tool\n\t\t\t\tName=\"" << tool << "\"";
  550. }
  551. void Finish()
  552. {
  553. this->Stream << (this->First? "" : "\"") << "/>\n";
  554. }
  555. void Write(std::vector<cmCustomCommand> const& ccs)
  556. {
  557. for(std::vector<cmCustomCommand>::const_iterator ci = ccs.begin();
  558. ci != ccs.end(); ++ci)
  559. {
  560. this->Write(*ci);
  561. }
  562. }
  563. void Write(cmCustomCommand const& cc)
  564. {
  565. if(this->First)
  566. {
  567. const char* comment = cc.GetComment();
  568. if(comment && *comment)
  569. {
  570. this->Stream << "\nDescription=\""
  571. << this->LG->EscapeForXML(comment) << "\"";
  572. }
  573. this->Stream << "\nCommandLine=\"";
  574. this->First = false;
  575. }
  576. else
  577. {
  578. this->Stream << this->LG->EscapeForXML("\n");
  579. }
  580. std::string script = this->LG->ConstructScript(cc, this->Config);
  581. this->Stream << this->LG->EscapeForXML(script.c_str());
  582. }
  583. private:
  584. cmLocalVisualStudio7Generator* LG;
  585. const char* Config;
  586. std::ostream& Stream;
  587. bool First;
  588. };
  589. //----------------------------------------------------------------------------
  590. void cmLocalVisualStudio7Generator::WriteConfiguration(std::ostream& fout,
  591. const char* configName,
  592. const char *libName,
  593. cmTarget &target)
  594. {
  595. const char* mfcFlag = this->Makefile->GetDefinition("CMAKE_MFC_FLAG");
  596. if(!mfcFlag)
  597. {
  598. mfcFlag = "0";
  599. }
  600. fout << "\t\t<Configuration\n"
  601. << "\t\t\tName=\"" << configName << "|" << this->PlatformName << "\"\n"
  602. << "\t\t\tOutputDirectory=\"" << configName << "\"\n";
  603. // This is an internal type to Visual Studio, it seems that:
  604. // 4 == static library
  605. // 2 == dll
  606. // 1 == executable
  607. // 10 == utility
  608. const char* configType = "10";
  609. const char* projectType = 0;
  610. bool targetBuilds = true;
  611. switch(target.GetType())
  612. {
  613. case cmTarget::OBJECT_LIBRARY:
  614. targetBuilds = false; // TODO: PDB for object library?
  615. case cmTarget::STATIC_LIBRARY:
  616. projectType = "typeStaticLibrary";
  617. configType = "4";
  618. break;
  619. case cmTarget::SHARED_LIBRARY:
  620. case cmTarget::MODULE_LIBRARY:
  621. projectType = "typeDynamicLibrary";
  622. configType = "2";
  623. break;
  624. case cmTarget::EXECUTABLE:
  625. configType = "1";
  626. break;
  627. case cmTarget::UTILITY:
  628. case cmTarget::GLOBAL_TARGET:
  629. configType = "10";
  630. default:
  631. targetBuilds = false;
  632. break;
  633. }
  634. if(this->FortranProject && projectType)
  635. {
  636. configType = projectType;
  637. }
  638. std::string flags;
  639. if(strcmp(configType, "10") != 0)
  640. {
  641. const char* linkLanguage = (this->FortranProject? "Fortran":
  642. target.GetLinkerLanguage(configName));
  643. if(!linkLanguage)
  644. {
  645. cmSystemTools::Error
  646. ("CMake can not determine linker language for target: ",
  647. target.GetName());
  648. return;
  649. }
  650. if(strcmp(linkLanguage, "C") == 0 || strcmp(linkLanguage, "CXX") == 0
  651. || strcmp(linkLanguage, "Fortran") == 0)
  652. {
  653. std::string baseFlagVar = "CMAKE_";
  654. baseFlagVar += linkLanguage;
  655. baseFlagVar += "_FLAGS";
  656. flags = this->Makefile->GetRequiredDefinition(baseFlagVar.c_str());
  657. std::string flagVar = baseFlagVar + std::string("_") +
  658. cmSystemTools::UpperCase(configName);
  659. flags += " ";
  660. flags += this->Makefile->GetRequiredDefinition(flagVar.c_str());
  661. }
  662. // set the correct language
  663. if(strcmp(linkLanguage, "C") == 0)
  664. {
  665. flags += " /TC ";
  666. }
  667. if(strcmp(linkLanguage, "CXX") == 0)
  668. {
  669. flags += " /TP ";
  670. }
  671. // Add the target-specific flags.
  672. this->AddCompileOptions(flags, &target, linkLanguage, configName);
  673. }
  674. if(this->FortranProject)
  675. {
  676. switch(this->GetFortranFormat(target.GetProperty("Fortran_FORMAT")))
  677. {
  678. case FortranFormatFixed: flags += " -fixed"; break;
  679. case FortranFormatFree: flags += " -free"; break;
  680. default: break;
  681. }
  682. }
  683. // Get preprocessor definitions for this directory.
  684. std::string defineFlags = this->Makefile->GetDefineFlags();
  685. Options::Tool t = Options::Compiler;
  686. cmVS7FlagTable const* table = cmLocalVisualStudio7GeneratorFlagTable;
  687. if(this->FortranProject)
  688. {
  689. t = Options::FortranCompiler;
  690. table = cmLocalVisualStudio7GeneratorFortranFlagTable;
  691. }
  692. Options targetOptions(this, t,
  693. table,
  694. this->ExtraFlagTable);
  695. targetOptions.FixExceptionHandlingDefault();
  696. std::string asmLocation = std::string(configName) + "/";
  697. targetOptions.AddFlag("AssemblerListingLocation", asmLocation.c_str());
  698. targetOptions.Parse(flags.c_str());
  699. targetOptions.Parse(defineFlags.c_str());
  700. targetOptions.ParseFinish();
  701. cmGeneratorTarget* gt =
  702. this->GlobalGenerator->GetGeneratorTarget(&target);
  703. targetOptions.AddDefines(target.GetCompileDefinitions(configName).c_str());
  704. targetOptions.SetVerboseMakefile(
  705. this->Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE"));
  706. // Add a definition for the configuration name.
  707. std::string configDefine = "CMAKE_INTDIR=\"";
  708. configDefine += configName;
  709. configDefine += "\"";
  710. targetOptions.AddDefine(configDefine);
  711. // Add the export symbol definition for shared library objects.
  712. if(const char* exportMacro = target.GetExportMacro())
  713. {
  714. targetOptions.AddDefine(exportMacro);
  715. }
  716. // The intermediate directory name consists of a directory for the
  717. // target and a subdirectory for the configuration name.
  718. std::string intermediateDir = this->GetTargetDirectory(target);
  719. intermediateDir += "/";
  720. intermediateDir += configName;
  721. fout << "\t\t\tIntermediateDirectory=\""
  722. << this->ConvertToXMLOutputPath(intermediateDir.c_str())
  723. << "\"\n"
  724. << "\t\t\tConfigurationType=\"" << configType << "\"\n"
  725. << "\t\t\tUseOfMFC=\"" << mfcFlag << "\"\n"
  726. << "\t\t\tATLMinimizesCRunTimeLibraryUsage=\"FALSE\"\n";
  727. // If unicode is enabled change the character set to unicode, if not
  728. // then default to MBCS.
  729. if(targetOptions.UsingUnicode())
  730. {
  731. fout << "\t\t\tCharacterSet=\"1\">\n";
  732. }
  733. else if(targetOptions.UsingSBCS())
  734. {
  735. fout << "\t\t\tCharacterSet=\"0\">\n";
  736. }
  737. else
  738. {
  739. fout << "\t\t\tCharacterSet=\"2\">\n";
  740. }
  741. const char* tool = "VCCLCompilerTool";
  742. if(this->FortranProject)
  743. {
  744. tool = "VFFortranCompilerTool";
  745. }
  746. fout << "\t\t\t<Tool\n"
  747. << "\t\t\t\tName=\"" << tool << "\"\n";
  748. if(this->FortranProject)
  749. {
  750. const char* target_mod_dir =
  751. target.GetProperty("Fortran_MODULE_DIRECTORY");
  752. std::string modDir;
  753. if(target_mod_dir)
  754. {
  755. modDir = this->Convert(target_mod_dir,
  756. cmLocalGenerator::START_OUTPUT,
  757. cmLocalGenerator::UNCHANGED);
  758. }
  759. else
  760. {
  761. modDir = ".";
  762. }
  763. fout << "\t\t\t\tModulePath=\""
  764. << this->ConvertToXMLOutputPath(modDir.c_str())
  765. << "\\$(ConfigurationName)\"\n";
  766. }
  767. targetOptions.OutputAdditionalOptions(fout, "\t\t\t\t", "\n");
  768. fout << "\t\t\t\tAdditionalIncludeDirectories=\"";
  769. std::vector<std::string> includes;
  770. this->GetIncludeDirectories(includes, gt, "C", configName);
  771. std::vector<std::string>::iterator i = includes.begin();
  772. for(;i != includes.end(); ++i)
  773. {
  774. // output the include path
  775. std::string ipath = this->ConvertToXMLOutputPath(i->c_str());
  776. fout << ipath << ";";
  777. // if this is fortran then output the include with
  778. // a ConfigurationName on the end of it.
  779. if(this->FortranProject)
  780. {
  781. ipath = i->c_str();
  782. ipath += "/$(ConfigurationName)";
  783. ipath = this->ConvertToXMLOutputPath(ipath.c_str());
  784. fout << ipath << ";";
  785. }
  786. }
  787. fout << "\"\n";
  788. targetOptions.OutputFlagMap(fout, "\t\t\t\t");
  789. targetOptions.OutputPreprocessorDefinitions(fout, "\t\t\t\t", "\n", "CXX");
  790. fout << "\t\t\t\tObjectFile=\"$(IntDir)\\\"\n";
  791. fout << "/>\n"; // end of <Tool Name=VCCLCompilerTool
  792. tool = "VCCustomBuildTool";
  793. if(this->FortranProject)
  794. {
  795. tool = "VFCustomBuildTool";
  796. }
  797. fout << "\t\t\t<Tool\n\t\t\t\tName=\"" << tool << "\"/>\n";
  798. tool = "VCResourceCompilerTool";
  799. if(this->FortranProject)
  800. {
  801. tool = "VFResourceCompilerTool";
  802. }
  803. fout << "\t\t\t<Tool\n\t\t\t\tName=\"" << tool << "\"\n"
  804. << "\t\t\t\tAdditionalIncludeDirectories=\"";
  805. for(i = includes.begin();i != includes.end(); ++i)
  806. {
  807. std::string ipath = this->ConvertToXMLOutputPath(i->c_str());
  808. fout << ipath << ";";
  809. }
  810. // add the -D flags to the RC tool
  811. fout << "\"";
  812. targetOptions.OutputPreprocessorDefinitions(fout, "\n\t\t\t\t", "", "RC");
  813. fout << "/>\n";
  814. tool = "VCMIDLTool";
  815. if(this->FortranProject)
  816. {
  817. tool = "VFMIDLTool";
  818. }
  819. fout << "\t\t\t<Tool\n\t\t\t\tName=\"" << tool << "\"\n";
  820. fout << "\t\t\t\tAdditionalIncludeDirectories=\"";
  821. for(i = includes.begin(); i != includes.end(); ++i)
  822. {
  823. std::string ipath = this->ConvertToXMLOutputPath(i->c_str());
  824. fout << ipath << ";";
  825. }
  826. fout << "\"\n";
  827. fout << "\t\t\t\tMkTypLibCompatible=\"FALSE\"\n";
  828. if( this->PlatformName == "x64" )
  829. {
  830. fout << "\t\t\t\tTargetEnvironment=\"3\"\n";
  831. }
  832. else if( this->PlatformName == "ia64" )
  833. {
  834. fout << "\t\t\t\tTargetEnvironment=\"2\"\n";
  835. }
  836. else
  837. {
  838. fout << "\t\t\t\tTargetEnvironment=\"1\"\n";
  839. }
  840. fout << "\t\t\t\tGenerateStublessProxies=\"TRUE\"\n";
  841. fout << "\t\t\t\tTypeLibraryName=\"$(InputName).tlb\"\n";
  842. fout << "\t\t\t\tOutputDirectory=\"$(IntDir)\"\n";
  843. fout << "\t\t\t\tHeaderFileName=\"$(InputName).h\"\n";
  844. fout << "\t\t\t\tDLLDataFileName=\"\"\n";
  845. fout << "\t\t\t\tInterfaceIdentifierFileName=\"$(InputName)_i.c\"\n";
  846. fout << "\t\t\t\tProxyFileName=\"$(InputName)_p.c\"/>\n";
  847. // end of <Tool Name=VCMIDLTool
  848. // Check if we need the FAT32 workaround.
  849. if(targetBuilds && this->Version >= VS8)
  850. {
  851. // Check the filesystem type where the target will be written.
  852. if(cmLVS6G_IsFAT(target.GetDirectory(configName).c_str()))
  853. {
  854. // Add a flag telling the manifest tool to use a workaround
  855. // for FAT32 file systems, which can cause an empty manifest
  856. // to be embedded into the resulting executable. See CMake
  857. // bug #2617.
  858. const char* manifestTool = "VCManifestTool";
  859. if(this->FortranProject)
  860. {
  861. manifestTool = "VFManifestTool";
  862. }
  863. fout << "\t\t\t<Tool\n\t\t\t\tName=\"" << manifestTool << "\"\n"
  864. << "\t\t\t\tUseFAT32Workaround=\"true\"\n"
  865. << "\t\t\t/>\n";
  866. }
  867. }
  868. this->OutputTargetRules(fout, configName, target, libName);
  869. this->OutputBuildTool(fout, configName, target, targetOptions.IsDebug());
  870. fout << "\t\t</Configuration>\n";
  871. }
  872. //----------------------------------------------------------------------------
  873. std::string
  874. cmLocalVisualStudio7Generator
  875. ::GetBuildTypeLinkerFlags(std::string rootLinkerFlags, const char* configName)
  876. {
  877. std::string configTypeUpper = cmSystemTools::UpperCase(configName);
  878. std::string extraLinkOptionsBuildTypeDef =
  879. rootLinkerFlags + "_" + configTypeUpper;
  880. std::string extraLinkOptionsBuildType =
  881. this->Makefile->GetRequiredDefinition
  882. (extraLinkOptionsBuildTypeDef.c_str());
  883. return extraLinkOptionsBuildType;
  884. }
  885. void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
  886. const char* configName,
  887. cmTarget &target,
  888. bool isDebug)
  889. {
  890. cmGlobalVisualStudio7Generator* gg =
  891. static_cast<cmGlobalVisualStudio7Generator*>(this->GlobalGenerator);
  892. std::string temp;
  893. std::string extraLinkOptions;
  894. if(target.GetType() == cmTarget::EXECUTABLE)
  895. {
  896. extraLinkOptions =
  897. this->Makefile->GetRequiredDefinition("CMAKE_EXE_LINKER_FLAGS")
  898. + std::string(" ")
  899. + GetBuildTypeLinkerFlags("CMAKE_EXE_LINKER_FLAGS", configName);
  900. }
  901. if(target.GetType() == cmTarget::SHARED_LIBRARY)
  902. {
  903. extraLinkOptions =
  904. this->Makefile->GetRequiredDefinition("CMAKE_SHARED_LINKER_FLAGS")
  905. + std::string(" ")
  906. + GetBuildTypeLinkerFlags("CMAKE_SHARED_LINKER_FLAGS", configName);
  907. }
  908. if(target.GetType() == cmTarget::MODULE_LIBRARY)
  909. {
  910. extraLinkOptions =
  911. this->Makefile->GetRequiredDefinition("CMAKE_MODULE_LINKER_FLAGS")
  912. + std::string(" ")
  913. + GetBuildTypeLinkerFlags("CMAKE_MODULE_LINKER_FLAGS", configName);
  914. }
  915. const char* targetLinkFlags = target.GetProperty("LINK_FLAGS");
  916. if(targetLinkFlags)
  917. {
  918. extraLinkOptions += " ";
  919. extraLinkOptions += targetLinkFlags;
  920. }
  921. std::string configTypeUpper = cmSystemTools::UpperCase(configName);
  922. std::string linkFlagsConfig = "LINK_FLAGS_";
  923. linkFlagsConfig += configTypeUpper;
  924. targetLinkFlags = target.GetProperty(linkFlagsConfig.c_str());
  925. if(targetLinkFlags)
  926. {
  927. extraLinkOptions += " ";
  928. extraLinkOptions += targetLinkFlags;
  929. }
  930. Options linkOptions(this, Options::Linker,
  931. cmLocalVisualStudio7GeneratorLinkFlagTable);
  932. linkOptions.Parse(extraLinkOptions.c_str());
  933. if(!this->ModuleDefinitionFile.empty())
  934. {
  935. std::string defFile =
  936. this->ConvertToXMLOutputPath(this->ModuleDefinitionFile.c_str());
  937. linkOptions.AddFlag("ModuleDefinitionFile", defFile.c_str());
  938. }
  939. switch(target.GetType())
  940. {
  941. case cmTarget::UNKNOWN_LIBRARY:
  942. break;
  943. case cmTarget::OBJECT_LIBRARY:
  944. {
  945. std::string libpath = this->GetTargetDirectory(target);
  946. libpath += "/";
  947. libpath += configName;
  948. libpath += "/";
  949. libpath += target.GetName();
  950. libpath += ".lib";
  951. const char* tool =
  952. this->FortranProject? "VFLibrarianTool":"VCLibrarianTool";
  953. fout << "\t\t\t<Tool\n"
  954. << "\t\t\t\tName=\"" << tool << "\"\n";
  955. fout << "\t\t\t\tOutputFile=\""
  956. << this->ConvertToXMLOutputPathSingle(libpath.c_str()) << "\"/>\n";
  957. break;
  958. }
  959. case cmTarget::STATIC_LIBRARY:
  960. {
  961. std::string targetNameFull = target.GetFullName(configName);
  962. std::string libpath = target.GetDirectory(configName);
  963. libpath += "/";
  964. libpath += targetNameFull;
  965. const char* tool = "VCLibrarianTool";
  966. if(this->FortranProject)
  967. {
  968. tool = "VFLibrarianTool";
  969. }
  970. fout << "\t\t\t<Tool\n"
  971. << "\t\t\t\tName=\"" << tool << "\"\n";
  972. if(this->GetVersion() < VS8)
  973. {
  974. cmOStringStream libdeps;
  975. this->Internal->OutputObjects(libdeps, &target);
  976. if(!libdeps.str().empty())
  977. {
  978. fout << "\t\t\t\tAdditionalDependencies=\"" << libdeps.str() << "\"\n";
  979. }
  980. }
  981. std::string libflags;
  982. if(const char* flags = target.GetProperty("STATIC_LIBRARY_FLAGS"))
  983. {
  984. libflags += flags;
  985. }
  986. std::string libFlagsConfig = "STATIC_LIBRARY_FLAGS_";
  987. libFlagsConfig += configTypeUpper;
  988. if(const char* flagsConfig = target.GetProperty(libFlagsConfig.c_str()))
  989. {
  990. libflags += " ";
  991. libflags += flagsConfig;
  992. }
  993. if(!libflags.empty())
  994. {
  995. fout << "\t\t\t\tAdditionalOptions=\"" << libflags << "\"\n";
  996. }
  997. fout << "\t\t\t\tOutputFile=\""
  998. << this->ConvertToXMLOutputPathSingle(libpath.c_str()) << "\"/>\n";
  999. break;
  1000. }
  1001. case cmTarget::SHARED_LIBRARY:
  1002. case cmTarget::MODULE_LIBRARY:
  1003. {
  1004. std::string targetName;
  1005. std::string targetNameSO;
  1006. std::string targetNameFull;
  1007. std::string targetNameImport;
  1008. std::string targetNamePDB;
  1009. target.GetLibraryNames(targetName, targetNameSO, targetNameFull,
  1010. targetNameImport, targetNamePDB, configName);
  1011. // Compute the link library and directory information.
  1012. cmComputeLinkInformation* pcli = target.GetLinkInformation(configName);
  1013. if(!pcli)
  1014. {
  1015. return;
  1016. }
  1017. cmComputeLinkInformation& cli = *pcli;
  1018. const char* linkLanguage = cli.GetLinkLanguage();
  1019. // Compute the variable name to lookup standard libraries for this
  1020. // language.
  1021. std::string standardLibsVar = "CMAKE_";
  1022. standardLibsVar += linkLanguage;
  1023. standardLibsVar += "_STANDARD_LIBRARIES";
  1024. const char* tool = "VCLinkerTool";
  1025. if(this->FortranProject)
  1026. {
  1027. tool = "VFLinkerTool";
  1028. }
  1029. fout << "\t\t\t<Tool\n"
  1030. << "\t\t\t\tName=\"" << tool << "\"\n";
  1031. if(!gg->NeedLinkLibraryDependencies(target))
  1032. {
  1033. fout << "\t\t\t\tLinkLibraryDependencies=\"false\"\n";
  1034. }
  1035. linkOptions.OutputAdditionalOptions(fout, "\t\t\t\t", "\n");
  1036. // Use the NOINHERIT macro to avoid getting VS project default
  1037. // libraries which may be set by the user to something bad.
  1038. fout << "\t\t\t\tAdditionalDependencies=\"$(NOINHERIT) "
  1039. << this->Makefile->GetSafeDefinition(standardLibsVar.c_str());
  1040. if(this->GetVersion() < VS8)
  1041. {
  1042. this->Internal->OutputObjects(fout, &target, " ");
  1043. }
  1044. fout << " ";
  1045. this->Internal->OutputLibraries(fout, cli.GetItems());
  1046. fout << "\"\n";
  1047. temp = target.GetDirectory(configName);
  1048. temp += "/";
  1049. temp += targetNameFull;
  1050. fout << "\t\t\t\tOutputFile=\""
  1051. << this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n";
  1052. this->WriteTargetVersionAttribute(fout, target);
  1053. linkOptions.OutputFlagMap(fout, "\t\t\t\t");
  1054. fout << "\t\t\t\tAdditionalLibraryDirectories=\"";
  1055. this->OutputLibraryDirectories(fout, cli.GetDirectories());
  1056. fout << "\"\n";
  1057. temp = target.GetPDBDirectory(configName);
  1058. temp += "/";
  1059. temp += targetNamePDB;
  1060. fout << "\t\t\t\tProgramDatabaseFile=\"" <<
  1061. this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n";
  1062. if(isDebug)
  1063. {
  1064. fout << "\t\t\t\tGenerateDebugInformation=\"TRUE\"\n";
  1065. }
  1066. if(this->WindowsCEProject)
  1067. {
  1068. if(this->GetVersion() < VS9)
  1069. {
  1070. fout << "\t\t\t\tSubSystem=\"9\"\n";
  1071. }
  1072. else
  1073. {
  1074. fout << "\t\t\t\tSubSystem=\"8\"\n";
  1075. }
  1076. }
  1077. std::string stackVar = "CMAKE_";
  1078. stackVar += linkLanguage;
  1079. stackVar += "_STACK_SIZE";
  1080. const char* stackVal = this->Makefile->GetDefinition(stackVar.c_str());
  1081. if(stackVal)
  1082. {
  1083. fout << "\t\t\t\tStackReserveSize=\"" << stackVal << "\"\n";
  1084. }
  1085. temp = target.GetDirectory(configName, true);
  1086. temp += "/";
  1087. temp += targetNameImport;
  1088. fout << "\t\t\t\tImportLibrary=\""
  1089. << this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"";
  1090. if(this->FortranProject)
  1091. {
  1092. fout << "\n\t\t\t\tLinkDLL=\"true\"";
  1093. }
  1094. fout << "/>\n";
  1095. }
  1096. break;
  1097. case cmTarget::EXECUTABLE:
  1098. {
  1099. std::string targetName;
  1100. std::string targetNameFull;
  1101. std::string targetNameImport;
  1102. std::string targetNamePDB;
  1103. target.GetExecutableNames(targetName, targetNameFull,
  1104. targetNameImport, targetNamePDB, configName);
  1105. // Compute the link library and directory information.
  1106. cmComputeLinkInformation* pcli = target.GetLinkInformation(configName);
  1107. if(!pcli)
  1108. {
  1109. return;
  1110. }
  1111. cmComputeLinkInformation& cli = *pcli;
  1112. const char* linkLanguage = cli.GetLinkLanguage();
  1113. bool isWin32Executable = target.GetPropertyAsBool("WIN32_EXECUTABLE");
  1114. // Compute the variable name to lookup standard libraries for this
  1115. // language.
  1116. std::string standardLibsVar = "CMAKE_";
  1117. standardLibsVar += linkLanguage;
  1118. standardLibsVar += "_STANDARD_LIBRARIES";
  1119. const char* tool = "VCLinkerTool";
  1120. if(this->FortranProject)
  1121. {
  1122. tool = "VFLinkerTool";
  1123. }
  1124. fout << "\t\t\t<Tool\n"
  1125. << "\t\t\t\tName=\"" << tool << "\"\n";
  1126. if(!gg->NeedLinkLibraryDependencies(target))
  1127. {
  1128. fout << "\t\t\t\tLinkLibraryDependencies=\"false\"\n";
  1129. }
  1130. linkOptions.OutputAdditionalOptions(fout, "\t\t\t\t", "\n");
  1131. // Use the NOINHERIT macro to avoid getting VS project default
  1132. // libraries which may be set by the user to something bad.
  1133. fout << "\t\t\t\tAdditionalDependencies=\"$(NOINHERIT) "
  1134. << this->Makefile->GetSafeDefinition(standardLibsVar.c_str());
  1135. if(this->GetVersion() < VS8)
  1136. {
  1137. this->Internal->OutputObjects(fout, &target, " ");
  1138. }
  1139. fout << " ";
  1140. this->Internal->OutputLibraries(fout, cli.GetItems());
  1141. fout << "\"\n";
  1142. temp = target.GetDirectory(configName);
  1143. temp += "/";
  1144. temp += targetNameFull;
  1145. fout << "\t\t\t\tOutputFile=\""
  1146. << this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n";
  1147. this->WriteTargetVersionAttribute(fout, target);
  1148. linkOptions.OutputFlagMap(fout, "\t\t\t\t");
  1149. fout << "\t\t\t\tAdditionalLibraryDirectories=\"";
  1150. this->OutputLibraryDirectories(fout, cli.GetDirectories());
  1151. fout << "\"\n";
  1152. std::string path = this->ConvertToXMLOutputPathSingle(
  1153. target.GetPDBDirectory(configName).c_str());
  1154. fout << "\t\t\t\tProgramDatabaseFile=\""
  1155. << path << "/" << targetNamePDB
  1156. << "\"\n";
  1157. if(isDebug)
  1158. {
  1159. fout << "\t\t\t\tGenerateDebugInformation=\"TRUE\"\n";
  1160. }
  1161. if ( this->WindowsCEProject )
  1162. {
  1163. if(this->GetVersion() < VS9)
  1164. {
  1165. fout << "\t\t\t\tSubSystem=\"9\"\n";
  1166. }
  1167. else
  1168. {
  1169. fout << "\t\t\t\tSubSystem=\"8\"\n";
  1170. }
  1171. fout << "\t\t\t\tEntryPointSymbol=\""
  1172. << (isWin32Executable ? "WinMainCRTStartup" : "mainACRTStartup")
  1173. << "\"\n";
  1174. }
  1175. else if ( this->FortranProject )
  1176. {
  1177. fout << "\t\t\t\tSubSystem=\""
  1178. << (isWin32Executable ? "subSystemWindows" : "subSystemConsole")
  1179. << "\"\n";
  1180. }
  1181. else
  1182. {
  1183. fout << "\t\t\t\tSubSystem=\""
  1184. << (isWin32Executable ? "2" : "1")
  1185. << "\"\n";
  1186. }
  1187. std::string stackVar = "CMAKE_";
  1188. stackVar += linkLanguage;
  1189. stackVar += "_STACK_SIZE";
  1190. const char* stackVal = this->Makefile->GetDefinition(stackVar.c_str());
  1191. if(stackVal)
  1192. {
  1193. fout << "\t\t\t\tStackReserveSize=\"" << stackVal << "\"";
  1194. }
  1195. temp = target.GetDirectory(configName, true);
  1196. temp += "/";
  1197. temp += targetNameImport;
  1198. fout << "\t\t\t\tImportLibrary=\""
  1199. << this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"/>\n";
  1200. break;
  1201. }
  1202. case cmTarget::UTILITY:
  1203. case cmTarget::GLOBAL_TARGET:
  1204. break;
  1205. }
  1206. }
  1207. //----------------------------------------------------------------------------
  1208. void
  1209. cmLocalVisualStudio7Generator
  1210. ::WriteTargetVersionAttribute(std::ostream& fout, cmTarget& target)
  1211. {
  1212. int major;
  1213. int minor;
  1214. target.GetTargetVersion(major, minor);
  1215. fout << "\t\t\t\tVersion=\"" << major << "." << minor << "\"\n";
  1216. }
  1217. //----------------------------------------------------------------------------
  1218. void
  1219. cmLocalVisualStudio7GeneratorInternals
  1220. ::OutputLibraries(std::ostream& fout, ItemVector const& libs)
  1221. {
  1222. cmLocalVisualStudio7Generator* lg = this->LocalGenerator;
  1223. for(ItemVector::const_iterator l = libs.begin(); l != libs.end(); ++l)
  1224. {
  1225. if(l->IsPath)
  1226. {
  1227. std::string rel = lg->Convert(l->Value.c_str(),
  1228. cmLocalGenerator::START_OUTPUT,
  1229. cmLocalGenerator::UNCHANGED);
  1230. fout << lg->ConvertToXMLOutputPath(rel.c_str()) << " ";
  1231. }
  1232. else
  1233. {
  1234. fout << l->Value << " ";
  1235. }
  1236. }
  1237. }
  1238. //----------------------------------------------------------------------------
  1239. void
  1240. cmLocalVisualStudio7GeneratorInternals
  1241. ::OutputObjects(std::ostream& fout, cmTarget* t, const char* isep)
  1242. {
  1243. // VS < 8 does not support per-config source locations so we
  1244. // list object library content on the link line instead.
  1245. cmLocalVisualStudio7Generator* lg = this->LocalGenerator;
  1246. cmGeneratorTarget* gt =
  1247. lg->GetGlobalGenerator()->GetGeneratorTarget(t);
  1248. std::vector<std::string> objs;
  1249. gt->UseObjectLibraries(objs);
  1250. const char* sep = isep? isep : "";
  1251. for(std::vector<std::string>::const_iterator
  1252. oi = objs.begin(); oi != objs.end(); ++oi)
  1253. {
  1254. std::string rel = lg->Convert(oi->c_str(),
  1255. cmLocalGenerator::START_OUTPUT,
  1256. cmLocalGenerator::UNCHANGED);
  1257. fout << sep << lg->ConvertToXMLOutputPath(rel.c_str());
  1258. sep = " ";
  1259. }
  1260. }
  1261. //----------------------------------------------------------------------------
  1262. void
  1263. cmLocalVisualStudio7Generator
  1264. ::OutputLibraryDirectories(std::ostream& fout,
  1265. std::vector<std::string> const& dirs)
  1266. {
  1267. const char* comma = "";
  1268. for(std::vector<std::string>::const_iterator d = dirs.begin();
  1269. d != dirs.end(); ++d)
  1270. {
  1271. // Remove any trailing slash and skip empty paths.
  1272. std::string dir = *d;
  1273. if(dir[dir.size()-1] == '/')
  1274. {
  1275. dir = dir.substr(0, dir.size()-1);
  1276. }
  1277. if(dir.empty())
  1278. {
  1279. continue;
  1280. }
  1281. // Switch to a relative path specification if it is shorter.
  1282. if(cmSystemTools::FileIsFullPath(dir.c_str()))
  1283. {
  1284. std::string rel = this->Convert(dir.c_str(), START_OUTPUT, UNCHANGED);
  1285. if(rel.size() < dir.size())
  1286. {
  1287. dir = rel;
  1288. }
  1289. }
  1290. // First search a configuration-specific subdirectory and then the
  1291. // original directory.
  1292. fout << comma << this->ConvertToXMLOutputPath((dir+"/$(OutDir)").c_str())
  1293. << "," << this->ConvertToXMLOutputPath(dir.c_str());
  1294. comma = ",";
  1295. }
  1296. }
  1297. void cmLocalVisualStudio7Generator::WriteVCProjFile(std::ostream& fout,
  1298. const char *libName,
  1299. cmTarget &target)
  1300. {
  1301. // get the configurations
  1302. std::vector<std::string> *configs =
  1303. static_cast<cmGlobalVisualStudio7Generator *>
  1304. (this->GlobalGenerator)->GetConfigurations();
  1305. // We may be modifying the source groups temporarily, so make a copy.
  1306. std::vector<cmSourceGroup> sourceGroups = this->Makefile->GetSourceGroups();
  1307. // get the classes from the source lists then add them to the groups
  1308. this->ModuleDefinitionFile = "";
  1309. std::vector<cmSourceFile*>const & classes = target.GetSourceFiles();
  1310. for(std::vector<cmSourceFile*>::const_iterator i = classes.begin();
  1311. i != classes.end(); i++)
  1312. {
  1313. // Add the file to the list of sources.
  1314. std::string source = (*i)->GetFullPath();
  1315. if(cmSystemTools::UpperCase((*i)->GetExtension()) == "DEF")
  1316. {
  1317. this->ModuleDefinitionFile = (*i)->GetFullPath();
  1318. }
  1319. cmSourceGroup& sourceGroup =
  1320. this->Makefile->FindSourceGroup(source.c_str(), sourceGroups);
  1321. sourceGroup.AssignSource(*i);
  1322. }
  1323. // open the project
  1324. this->WriteProjectStart(fout, libName, target, sourceGroups);
  1325. // write the configuration information
  1326. this->WriteConfigurations(fout, libName, target);
  1327. fout << "\t<Files>\n";
  1328. // Loop through every source group.
  1329. for(unsigned int i = 0; i < sourceGroups.size(); ++i)
  1330. {
  1331. cmSourceGroup sg = sourceGroups[i];
  1332. this->WriteGroup(&sg, target, fout, libName, configs);
  1333. }
  1334. if(this->GetVersion() >= VS8)
  1335. {
  1336. // VS >= 8 support per-config source locations so we
  1337. // list object library content as external objects.
  1338. cmGeneratorTarget* gt =
  1339. this->GlobalGenerator->GetGeneratorTarget(&target);
  1340. std::vector<std::string> objs;
  1341. gt->UseObjectLibraries(objs);
  1342. if(!objs.empty())
  1343. {
  1344. // TODO: Separate sub-filter for each object library used?
  1345. fout << "\t\t<Filter Name=\"Object Libraries\">\n";
  1346. for(std::vector<std::string>::const_iterator
  1347. oi = objs.begin(); oi != objs.end(); ++oi)
  1348. {
  1349. std::string o = this->ConvertToXMLOutputPathSingle(oi->c_str());
  1350. fout << "\t\t\t<File RelativePath=\"" << o << "\" />\n";
  1351. }
  1352. fout << "\t\t</Filter>\n";
  1353. }
  1354. }
  1355. fout << "\t</Files>\n";
  1356. // Write the VCProj file's footer.
  1357. this->WriteVCProjFooter(fout, target);
  1358. }
  1359. struct cmLVS7GFileConfig
  1360. {
  1361. std::string ObjectName;
  1362. std::string CompileFlags;
  1363. std::string CompileDefs;
  1364. std::string CompileDefsConfig;
  1365. std::string AdditionalDeps;
  1366. bool ExcludedFromBuild;
  1367. };
  1368. class cmLocalVisualStudio7GeneratorFCInfo
  1369. {
  1370. public:
  1371. cmLocalVisualStudio7GeneratorFCInfo(cmLocalVisualStudio7Generator* lg,
  1372. cmTarget& target,
  1373. cmSourceFile const& sf,
  1374. std::vector<std::string>* configs);
  1375. std::map<cmStdString, cmLVS7GFileConfig> FileConfigMap;
  1376. };
  1377. cmLocalVisualStudio7GeneratorFCInfo
  1378. ::cmLocalVisualStudio7GeneratorFCInfo(cmLocalVisualStudio7Generator* lg,
  1379. cmTarget& target,
  1380. cmSourceFile const& sf,
  1381. std::vector<std::string>* configs)
  1382. {
  1383. cmGeneratorTarget* gt =
  1384. lg->GetGlobalGenerator()->GetGeneratorTarget(&target);
  1385. std::string objectName;
  1386. if(gt->ExplicitObjectName.find(&sf) != gt->ExplicitObjectName.end())
  1387. {
  1388. objectName = gt->Objects[&sf];
  1389. }
  1390. // Compute per-source, per-config information.
  1391. for(std::vector<std::string>::iterator i = configs->begin();
  1392. i != configs->end(); ++i)
  1393. {
  1394. std::string configUpper = cmSystemTools::UpperCase(*i);
  1395. cmLVS7GFileConfig fc;
  1396. bool needfc = false;
  1397. if(!objectName.empty())
  1398. {
  1399. fc.ObjectName = objectName;
  1400. needfc = true;
  1401. }
  1402. if(const char* cflags = sf.GetProperty("COMPILE_FLAGS"))
  1403. {
  1404. fc.CompileFlags = cflags;
  1405. needfc = true;
  1406. }
  1407. if(lg->FortranProject)
  1408. {
  1409. switch(lg->GetFortranFormat(sf.GetProperty("Fortran_FORMAT")))
  1410. {
  1411. case cmLocalGenerator::FortranFormatFixed:
  1412. fc.CompileFlags = "-fixed " + fc.CompileFlags;
  1413. needfc = true;
  1414. break;
  1415. case cmLocalGenerator::FortranFormatFree:
  1416. fc.CompileFlags = "-free " + fc.CompileFlags;
  1417. needfc = true;
  1418. break;
  1419. default: break;
  1420. }
  1421. }
  1422. if(const char* cdefs = sf.GetProperty("COMPILE_DEFINITIONS"))
  1423. {
  1424. fc.CompileDefs = cdefs;
  1425. needfc = true;
  1426. }
  1427. std::string defPropName = "COMPILE_DEFINITIONS_";
  1428. defPropName += configUpper;
  1429. if(const char* ccdefs = sf.GetProperty(defPropName.c_str()))
  1430. {
  1431. fc.CompileDefsConfig = ccdefs;
  1432. needfc = true;
  1433. }
  1434. // Check for extra object-file dependencies.
  1435. if(const char* deps = sf.GetProperty("OBJECT_DEPENDS"))
  1436. {
  1437. std::vector<std::string> depends;
  1438. cmSystemTools::ExpandListArgument(deps, depends);
  1439. const char* sep = "";
  1440. for(std::vector<std::string>::iterator j = depends.begin();
  1441. j != depends.end(); ++j)
  1442. {
  1443. fc.AdditionalDeps += sep;
  1444. fc.AdditionalDeps += lg->ConvertToXMLOutputPath(j->c_str());
  1445. sep = ";";
  1446. needfc = true;
  1447. }
  1448. }
  1449. const char* lang =
  1450. lg->GlobalGenerator->GetLanguageFromExtension
  1451. (sf.GetExtension().c_str());
  1452. const char* sourceLang = lg->GetSourceFileLanguage(sf);
  1453. const char* linkLanguage = target.GetLinkerLanguage(i->c_str());
  1454. bool needForceLang = false;
  1455. // source file does not match its extension language
  1456. if(lang && sourceLang && strcmp(lang, sourceLang) != 0)
  1457. {
  1458. needForceLang = true;
  1459. lang = sourceLang;
  1460. }
  1461. // If HEADER_FILE_ONLY is set, we must suppress this generation in
  1462. // the project file
  1463. fc.ExcludedFromBuild =
  1464. (sf.GetPropertyAsBool("HEADER_FILE_ONLY"));
  1465. if(fc.ExcludedFromBuild)
  1466. {
  1467. needfc = true;
  1468. }
  1469. // if the source file does not match the linker language
  1470. // then force c or c++
  1471. if(needForceLang || (linkLanguage && lang
  1472. && strcmp(lang, linkLanguage) != 0))
  1473. {
  1474. if(strcmp(lang, "CXX") == 0)
  1475. {
  1476. // force a C++ file type
  1477. fc.CompileFlags += " /TP ";
  1478. needfc = true;
  1479. }
  1480. else if(strcmp(lang, "C") == 0)
  1481. {
  1482. // force to c
  1483. fc.CompileFlags += " /TC ";
  1484. needfc = true;
  1485. }
  1486. }
  1487. if(needfc)
  1488. {
  1489. this->FileConfigMap[*i] = fc;
  1490. }
  1491. }
  1492. }
  1493. //----------------------------------------------------------------------------
  1494. std::string
  1495. cmLocalVisualStudio7Generator
  1496. ::ComputeLongestObjectDirectory(cmTarget& target) const
  1497. {
  1498. std::vector<std::string> *configs =
  1499. static_cast<cmGlobalVisualStudio7Generator *>
  1500. (this->GlobalGenerator)->GetConfigurations();
  1501. // Compute the maximum length configuration name.
  1502. std::string config_max;
  1503. for(std::vector<std::string>::iterator i = configs->begin();
  1504. i != configs->end(); ++i)
  1505. {
  1506. if(i->size() > config_max.size())
  1507. {
  1508. config_max = *i;
  1509. }
  1510. }
  1511. // Compute the maximum length full path to the intermediate
  1512. // files directory for any configuration. This is used to construct
  1513. // object file names that do not produce paths that are too long.
  1514. std::string dir_max;
  1515. dir_max += this->Makefile->GetCurrentOutputDirectory();
  1516. dir_max += "/";
  1517. dir_max += this->GetTargetDirectory(target);
  1518. dir_max += "/";
  1519. dir_max += config_max;
  1520. dir_max += "/";
  1521. return dir_max;
  1522. }
  1523. bool cmLocalVisualStudio7Generator
  1524. ::WriteGroup(const cmSourceGroup *sg, cmTarget& target,
  1525. std::ostream &fout, const char *libName,
  1526. std::vector<std::string> *configs)
  1527. {
  1528. const std::vector<const cmSourceFile *> &sourceFiles =
  1529. sg->GetSourceFiles();
  1530. std::vector<cmSourceGroup> const& children = sg->GetGroupChildren();
  1531. // Write the children to temporary output.
  1532. bool hasChildrenWithSources = false;
  1533. cmOStringStream tmpOut;
  1534. for(unsigned int i=0;i<children.size();++i)
  1535. {
  1536. if(this->WriteGroup(&children[i], target, tmpOut, libName, configs))
  1537. {
  1538. hasChildrenWithSources = true;
  1539. }
  1540. }
  1541. // If the group is empty, don't write it at all.
  1542. if(sourceFiles.empty() && !hasChildrenWithSources)
  1543. {
  1544. return false;
  1545. }
  1546. // If the group has a name, write the header.
  1547. std::string name = sg->GetName();
  1548. if(name != "")
  1549. {
  1550. this->WriteVCProjBeginGroup(fout, name.c_str(), "");
  1551. }
  1552. // Loop through each source in the source group.
  1553. std::string objectName;
  1554. for(std::vector<const cmSourceFile *>::const_iterator sf =
  1555. sourceFiles.begin(); sf != sourceFiles.end(); ++sf)
  1556. {
  1557. std::string source = (*sf)->GetFullPath();
  1558. FCInfo fcinfo(this, target, *(*sf), configs);
  1559. if (source != libName || target.GetType() == cmTarget::UTILITY ||
  1560. target.GetType() == cmTarget::GLOBAL_TARGET )
  1561. {
  1562. fout << "\t\t\t<File\n";
  1563. std::string d = this->ConvertToXMLOutputPathSingle(source.c_str());
  1564. // Tell MS-Dev what the source is. If the compiler knows how to
  1565. // build it, then it will.
  1566. fout << "\t\t\t\tRelativePath=\"" << d << "\">\n";
  1567. if(cmCustomCommand const* command = (*sf)->GetCustomCommand())
  1568. {
  1569. this->WriteCustomRule(fout, source.c_str(), *command, fcinfo);
  1570. }
  1571. else if(!fcinfo.FileConfigMap.empty())
  1572. {
  1573. const char* aCompilerTool = "VCCLCompilerTool";
  1574. const char* lang = "CXX";
  1575. if(this->FortranProject)
  1576. {
  1577. aCompilerTool = "VFFortranCompilerTool";
  1578. }
  1579. std::string ext = (*sf)->GetExtension();
  1580. ext = cmSystemTools::LowerCase(ext);
  1581. if(ext == "idl")
  1582. {
  1583. aCompilerTool = "VCMIDLTool";
  1584. if(this->FortranProject)
  1585. {
  1586. aCompilerTool = "VFMIDLTool";
  1587. }
  1588. }
  1589. if(ext == "rc")
  1590. {
  1591. aCompilerTool = "VCResourceCompilerTool";
  1592. lang = "RC";
  1593. if(this->FortranProject)
  1594. {
  1595. aCompilerTool = "VFResourceCompilerTool";
  1596. }
  1597. }
  1598. if(ext == "def")
  1599. {
  1600. aCompilerTool = "VCCustomBuildTool";
  1601. if(this->FortranProject)
  1602. {
  1603. aCompilerTool = "VFCustomBuildTool";
  1604. }
  1605. }
  1606. for(std::map<cmStdString, cmLVS7GFileConfig>::const_iterator
  1607. fci = fcinfo.FileConfigMap.begin();
  1608. fci != fcinfo.FileConfigMap.end(); ++fci)
  1609. {
  1610. cmLVS7GFileConfig const& fc = fci->second;
  1611. fout << "\t\t\t\t<FileConfiguration\n"
  1612. << "\t\t\t\t\tName=\"" << fci->first
  1613. << "|" << this->PlatformName << "\"";
  1614. if(fc.ExcludedFromBuild)
  1615. {
  1616. fout << " ExcludedFromBuild=\"true\"";
  1617. }
  1618. fout << ">\n";
  1619. fout << "\t\t\t\t\t<Tool\n"
  1620. << "\t\t\t\t\tName=\"" << aCompilerTool << "\"\n";
  1621. if(!fc.CompileFlags.empty() ||
  1622. !fc.CompileDefs.empty() ||
  1623. !fc.CompileDefsConfig.empty())
  1624. {
  1625. Options::Tool tool = Options::Compiler;
  1626. cmVS7FlagTable const* table =
  1627. cmLocalVisualStudio7GeneratorFlagTable;
  1628. if(this->FortranProject)
  1629. {
  1630. tool = Options::FortranCompiler;
  1631. table = cmLocalVisualStudio7GeneratorFortranFlagTable;
  1632. }
  1633. Options fileOptions(this, tool, table,
  1634. this->ExtraFlagTable);
  1635. fileOptions.Parse(fc.CompileFlags.c_str());
  1636. fileOptions.AddDefines(fc.CompileDefs.c_str());
  1637. fileOptions.AddDefines(fc.CompileDefsConfig.c_str());
  1638. fileOptions.OutputAdditionalOptions(fout, "\t\t\t\t\t", "\n");
  1639. fileOptions.OutputFlagMap(fout, "\t\t\t\t\t");
  1640. fileOptions.OutputPreprocessorDefinitions(fout,
  1641. "\t\t\t\t\t", "\n",
  1642. lang);
  1643. }
  1644. if(!fc.AdditionalDeps.empty())
  1645. {
  1646. fout << "\t\t\t\t\tAdditionalDependencies=\""
  1647. << fc.AdditionalDeps.c_str() << "\"\n";
  1648. }
  1649. if(!fc.ObjectName.empty())
  1650. {
  1651. fout << "\t\t\t\t\tObjectFile=\"$(IntDir)/"
  1652. << fc.ObjectName.c_str() << "\"\n";
  1653. }
  1654. fout << "\t\t\t\t\t/>\n"
  1655. << "\t\t\t\t</FileConfiguration>\n";
  1656. }
  1657. }
  1658. fout << "\t\t\t</File>\n";
  1659. }
  1660. }
  1661. // If the group has children with source files, write the children.
  1662. if(hasChildrenWithSources)
  1663. {
  1664. fout << tmpOut.str();
  1665. }
  1666. // If the group has a name, write the footer.
  1667. if(name != "")
  1668. {
  1669. this->WriteVCProjEndGroup(fout);
  1670. }
  1671. return true;
  1672. }
  1673. void cmLocalVisualStudio7Generator::
  1674. WriteCustomRule(std::ostream& fout,
  1675. const char* source,
  1676. const cmCustomCommand& command,
  1677. FCInfo& fcinfo)
  1678. {
  1679. std::string comment = this->ConstructComment(command);
  1680. // Write the rule for each configuration.
  1681. std::vector<std::string>::iterator i;
  1682. std::vector<std::string> *configs =
  1683. static_cast<cmGlobalVisualStudio7Generator *>
  1684. (this->GlobalGenerator)->GetConfigurations();
  1685. const char* compileTool = "VCCLCompilerTool";
  1686. if(this->FortranProject)
  1687. {
  1688. compileTool = "VFCLCompilerTool";
  1689. }
  1690. const char* customTool = "VCCustomBuildTool";
  1691. if(this->FortranProject)
  1692. {
  1693. customTool = "VFCustomBuildTool";
  1694. }
  1695. for(i = configs->begin(); i != configs->end(); ++i)
  1696. {
  1697. cmLVS7GFileConfig const& fc = fcinfo.FileConfigMap[*i];
  1698. fout << "\t\t\t\t<FileConfiguration\n";
  1699. fout << "\t\t\t\t\tName=\"" << *i << "|" << this->PlatformName << "\">\n";
  1700. if(!fc.CompileFlags.empty())
  1701. {
  1702. fout << "\t\t\t\t\t<Tool\n"
  1703. << "\t\t\t\t\tName=\"" << compileTool << "\"\n"
  1704. << "\t\t\t\t\tAdditionalOptions=\""
  1705. << this->EscapeForXML(fc.CompileFlags.c_str()) << "\"/>\n";
  1706. }
  1707. std::string script = this->ConstructScript(command, i->c_str());
  1708. if(this->FortranProject)
  1709. {
  1710. cmSystemTools::ReplaceString(script, "$(Configuration)", i->c_str());
  1711. }
  1712. fout << "\t\t\t\t\t<Tool\n"
  1713. << "\t\t\t\t\tName=\"" << customTool << "\"\n"
  1714. << "\t\t\t\t\tDescription=\""
  1715. << this->EscapeForXML(comment.c_str()) << "\"\n"
  1716. << "\t\t\t\t\tCommandLine=\""
  1717. << this->EscapeForXML(script.c_str()) << "\"\n"
  1718. << "\t\t\t\t\tAdditionalDependencies=\"";
  1719. if(command.GetDepends().empty())
  1720. {
  1721. // There are no real dependencies. Produce an artificial one to
  1722. // make sure the rule runs reliably.
  1723. if(!cmSystemTools::FileExists(source))
  1724. {
  1725. std::ofstream depout(source);
  1726. depout << "Artificial dependency for a custom command.\n";
  1727. }
  1728. fout << this->ConvertToXMLOutputPath(source);
  1729. }
  1730. else
  1731. {
  1732. // Write out the dependencies for the rule.
  1733. for(std::vector<std::string>::const_iterator d =
  1734. command.GetDepends().begin();
  1735. d != command.GetDepends().end();
  1736. ++d)
  1737. {
  1738. // Get the real name of the dependency in case it is a CMake target.
  1739. std::string dep;
  1740. if(this->GetRealDependency(d->c_str(), i->c_str(), dep))
  1741. {
  1742. fout << this->ConvertToXMLOutputPath(dep.c_str())
  1743. << ";";
  1744. }
  1745. }
  1746. }
  1747. fout << "\"\n";
  1748. fout << "\t\t\t\t\tOutputs=\"";
  1749. if(command.GetOutputs().empty())
  1750. {
  1751. fout << source << "_force";
  1752. }
  1753. else
  1754. {
  1755. // Write a rule for the output generated by this command.
  1756. const char* sep = "";
  1757. for(std::vector<std::string>::const_iterator o =
  1758. command.GetOutputs().begin();
  1759. o != command.GetOutputs().end();
  1760. ++o)
  1761. {
  1762. fout << sep << this->ConvertToXMLOutputPathSingle(o->c_str());
  1763. sep = ";";
  1764. }
  1765. }
  1766. fout << "\"/>\n";
  1767. fout << "\t\t\t\t</FileConfiguration>\n";
  1768. }
  1769. }
  1770. void cmLocalVisualStudio7Generator::WriteVCProjBeginGroup(std::ostream& fout,
  1771. const char* group,
  1772. const char* )
  1773. {
  1774. fout << "\t\t<Filter\n"
  1775. << "\t\t\tName=\"" << group << "\"\n"
  1776. << "\t\t\tFilter=\"\">\n";
  1777. }
  1778. void cmLocalVisualStudio7Generator::WriteVCProjEndGroup(std::ostream& fout)
  1779. {
  1780. fout << "\t\t</Filter>\n";
  1781. }
  1782. // look for custom rules on a target and collect them together
  1783. void cmLocalVisualStudio7Generator
  1784. ::OutputTargetRules(std::ostream& fout,
  1785. const char* configName,
  1786. cmTarget &target,
  1787. const char * /*libName*/)
  1788. {
  1789. if (target.GetType() > cmTarget::GLOBAL_TARGET)
  1790. {
  1791. return;
  1792. }
  1793. EventWriter event(this, configName, fout);
  1794. // Add pre-build event.
  1795. const char* tool =
  1796. this->FortranProject? "VFPreBuildEventTool":"VCPreBuildEventTool";
  1797. event.Start(tool);
  1798. event.Write(target.GetPreBuildCommands());
  1799. event.Finish();
  1800. // Add pre-link event.
  1801. tool = this->FortranProject? "VFPreLinkEventTool":"VCPreLinkEventTool";
  1802. event.Start(tool);
  1803. event.Write(target.GetPreLinkCommands());
  1804. cmsys::auto_ptr<cmCustomCommand> pcc(
  1805. this->MaybeCreateImplibDir(target, configName, this->FortranProject));
  1806. if(pcc.get())
  1807. {
  1808. event.Write(*pcc);
  1809. }
  1810. event.Finish();
  1811. // Add post-build event.
  1812. tool = this->FortranProject? "VFPostBuildEventTool":"VCPostBuildEventTool";
  1813. event.Start(tool);
  1814. event.Write(target.GetPostBuildCommands());
  1815. event.Finish();
  1816. }
  1817. void cmLocalVisualStudio7Generator::WriteProjectSCC(std::ostream& fout,
  1818. cmTarget& target)
  1819. {
  1820. // if we have all the required Source code control tags
  1821. // then add that to the project
  1822. const char* vsProjectname = target.GetProperty("VS_SCC_PROJECTNAME");
  1823. const char* vsLocalpath = target.GetProperty("VS_SCC_LOCALPATH");
  1824. const char* vsProvider = target.GetProperty("VS_SCC_PROVIDER");
  1825. if(vsProvider && vsLocalpath && vsProjectname)
  1826. {
  1827. fout << "\tSccProjectName=\"" << vsProjectname << "\"\n"
  1828. << "\tSccLocalPath=\"" << vsLocalpath << "\"\n"
  1829. << "\tSccProvider=\"" << vsProvider << "\"\n";
  1830. const char* vsAuxPath = target.GetProperty("VS_SCC_AUXPATH");
  1831. if(vsAuxPath)
  1832. {
  1833. fout << "\tSccAuxPath=\"" << vsAuxPath << "\"\n";
  1834. }
  1835. }
  1836. }
  1837. void
  1838. cmLocalVisualStudio7Generator
  1839. ::WriteProjectStartFortran(std::ostream& fout,
  1840. const char *libName,
  1841. cmTarget & target)
  1842. {
  1843. cmGlobalVisualStudio7Generator* gg =
  1844. static_cast<cmGlobalVisualStudio7Generator *>(this->GlobalGenerator);
  1845. // Compute the version of the Intel plugin to the VS IDE.
  1846. // If the key does not exist then use a default guess.
  1847. std::string intelVersion = "9.10";
  1848. std::string vskey = gg->GetRegistryBase();
  1849. vskey += "\\Packages\\" CM_INTEL_PLUGIN_GUID ";ProductVersion";
  1850. cmSystemTools::ReadRegistryValue(vskey.c_str(), intelVersion,
  1851. cmSystemTools::KeyWOW64_32);
  1852. if (intelVersion.find("13") == 0 ||
  1853. intelVersion.find("12") == 0 ||
  1854. intelVersion.find("11") == 0)
  1855. {
  1856. // Version 11.x, 12.x, and 13.x actually use 11.0 in project files!
  1857. intelVersion = "11.0" ;
  1858. }
  1859. else if(intelVersion.find("10") == 0)
  1860. {
  1861. // Version 10.x actually uses 9.10 in project files!
  1862. intelVersion = "9.10";
  1863. }
  1864. fout << "<?xml version=\"1.0\" encoding = \"Windows-1252\"?>\n"
  1865. << "<VisualStudioProject\n"
  1866. << "\tProjectCreator=\"Intel Fortran\"\n"
  1867. << "\tVersion=\"" << intelVersion << "\"\n";
  1868. const char* keyword = target.GetProperty("VS_KEYWORD");
  1869. if(!keyword)
  1870. {
  1871. keyword = "Console Application";
  1872. }
  1873. const char* projectType = 0;
  1874. switch(target.GetType())
  1875. {
  1876. case cmTarget::STATIC_LIBRARY:
  1877. projectType = "typeStaticLibrary";
  1878. if(keyword)
  1879. {
  1880. keyword = "Static Library";
  1881. }
  1882. break;
  1883. case cmTarget::SHARED_LIBRARY:
  1884. case cmTarget::MODULE_LIBRARY:
  1885. projectType = "typeDynamicLibrary";
  1886. if(!keyword)
  1887. {
  1888. keyword = "Dll";
  1889. }
  1890. break;
  1891. case cmTarget::EXECUTABLE:
  1892. if(!keyword)
  1893. {
  1894. keyword = "Console Application";
  1895. }
  1896. projectType = 0;
  1897. break;
  1898. case cmTarget::UTILITY:
  1899. case cmTarget::GLOBAL_TARGET:
  1900. default:
  1901. break;
  1902. }
  1903. if(projectType)
  1904. {
  1905. fout << "\tProjectType=\"" << projectType << "\"\n";
  1906. }
  1907. this->WriteProjectSCC(fout, target);
  1908. fout<< "\tKeyword=\"" << keyword << "\">\n"
  1909. << "\tProjectGUID=\"{" << gg->GetGUID(libName) << "}\">\n"
  1910. << "\t<Platforms>\n"
  1911. << "\t\t<Platform\n\t\t\tName=\"" << this->PlatformName << "\"/>\n"
  1912. << "\t</Platforms>\n";
  1913. }
  1914. void
  1915. cmLocalVisualStudio7Generator::WriteProjectStart(std::ostream& fout,
  1916. const char *libName,
  1917. cmTarget & target,
  1918. std::vector<cmSourceGroup> &)
  1919. {
  1920. if(this->FortranProject)
  1921. {
  1922. this->WriteProjectStartFortran(fout, libName, target);
  1923. return;
  1924. }
  1925. fout << "<?xml version=\"1.0\" encoding = \"Windows-1252\"?>\n"
  1926. << "<VisualStudioProject\n"
  1927. << "\tProjectType=\"Visual C++\"\n";
  1928. if(this->Version == VS71)
  1929. {
  1930. fout << "\tVersion=\"7.10\"\n";
  1931. }
  1932. else
  1933. {
  1934. fout << "\tVersion=\"" << (this->Version/10) << ".00\"\n";
  1935. }
  1936. const char* projLabel = target.GetProperty("PROJECT_LABEL");
  1937. if(!projLabel)
  1938. {
  1939. projLabel = libName;
  1940. }
  1941. const char* keyword = target.GetProperty("VS_KEYWORD");
  1942. if(!keyword)
  1943. {
  1944. keyword = "Win32Proj";
  1945. }
  1946. cmGlobalVisualStudio7Generator* gg =
  1947. static_cast<cmGlobalVisualStudio7Generator *>(this->GlobalGenerator);
  1948. fout << "\tName=\"" << projLabel << "\"\n";
  1949. if(this->Version >= VS8)
  1950. {
  1951. fout << "\tProjectGUID=\"{" << gg->GetGUID(libName) << "}\"\n";
  1952. }
  1953. this->WriteProjectSCC(fout, target);
  1954. fout << "\tKeyword=\"" << keyword << "\">\n"
  1955. << "\t<Platforms>\n"
  1956. << "\t\t<Platform\n\t\t\tName=\"" << this->PlatformName << "\"/>\n"
  1957. << "\t</Platforms>\n";
  1958. }
  1959. void cmLocalVisualStudio7Generator::WriteVCProjFooter(std::ostream& fout,
  1960. cmTarget &target)
  1961. {
  1962. fout << "\t<Globals>\n";
  1963. cmPropertyMap const& props = target.GetProperties();
  1964. for(cmPropertyMap::const_iterator i = props.begin(); i != props.end(); ++i)
  1965. {
  1966. if(i->first.find("VS_GLOBAL_") == 0)
  1967. {
  1968. std::string name = i->first.substr(10);
  1969. if(name != "")
  1970. {
  1971. fout << "\t\t<Global\n"
  1972. << "\t\t\tName=\"" << name << "\"\n"
  1973. << "\t\t\tValue=\"" << i->second.GetValue() << "\"\n"
  1974. << "\t\t/>\n";
  1975. }
  1976. }
  1977. }
  1978. fout << "\t</Globals>\n"
  1979. << "</VisualStudioProject>\n";
  1980. }
  1981. std::string cmLocalVisualStudio7GeneratorEscapeForXML(const char* s)
  1982. {
  1983. std::string ret = s;
  1984. cmSystemTools::ReplaceString(ret, "&", "&amp;");
  1985. cmSystemTools::ReplaceString(ret, "\"", "&quot;");
  1986. cmSystemTools::ReplaceString(ret, "<", "&lt;");
  1987. cmSystemTools::ReplaceString(ret, ">", "&gt;");
  1988. cmSystemTools::ReplaceString(ret, "\n", "&#x0D;&#x0A;");
  1989. return ret;
  1990. }
  1991. std::string cmLocalVisualStudio7Generator::EscapeForXML(const char* s)
  1992. {
  1993. return cmLocalVisualStudio7GeneratorEscapeForXML(s);
  1994. }
  1995. std::string cmLocalVisualStudio7Generator
  1996. ::ConvertToXMLOutputPath(const char* path)
  1997. {
  1998. std::string ret = this->ConvertToOptionallyRelativeOutputPath(path);
  1999. cmSystemTools::ReplaceString(ret, "&", "&amp;");
  2000. cmSystemTools::ReplaceString(ret, "\"", "&quot;");
  2001. cmSystemTools::ReplaceString(ret, "<", "&lt;");
  2002. cmSystemTools::ReplaceString(ret, ">", "&gt;");
  2003. return ret;
  2004. }
  2005. std::string cmLocalVisualStudio7Generator
  2006. ::ConvertToXMLOutputPathSingle(const char* path)
  2007. {
  2008. std::string ret = this->ConvertToOptionallyRelativeOutputPath(path);
  2009. cmSystemTools::ReplaceString(ret, "\"", "");
  2010. cmSystemTools::ReplaceString(ret, "&", "&amp;");
  2011. cmSystemTools::ReplaceString(ret, "<", "&lt;");
  2012. cmSystemTools::ReplaceString(ret, ">", "&gt;");
  2013. return ret;
  2014. }
  2015. // This class is used to parse an existing vs 7 project
  2016. // and extract the GUID
  2017. class cmVS7XMLParser : public cmXMLParser
  2018. {
  2019. public:
  2020. virtual void EndElement(const char* /* name */)
  2021. {
  2022. }
  2023. virtual void StartElement(const char* name, const char** atts)
  2024. {
  2025. // once the GUID is found do nothing
  2026. if(this->GUID.size())
  2027. {
  2028. return;
  2029. }
  2030. int i =0;
  2031. if(strcmp("VisualStudioProject", name) == 0)
  2032. {
  2033. while(atts[i])
  2034. {
  2035. if(strcmp(atts[i], "ProjectGUID") == 0)
  2036. {
  2037. if(atts[i+1])
  2038. {
  2039. this->GUID = atts[i+1];
  2040. this->GUID = this->GUID.substr(1, this->GUID.size()-2);
  2041. }
  2042. else
  2043. {
  2044. this->GUID = "";
  2045. }
  2046. return;
  2047. }
  2048. ++i;
  2049. }
  2050. }
  2051. }
  2052. int InitializeParser()
  2053. {
  2054. int ret = cmXMLParser::InitializeParser();
  2055. if(ret == 0)
  2056. {
  2057. return ret;
  2058. }
  2059. // visual studio projects have a strange encoding, but it is
  2060. // really utf-8
  2061. XML_SetEncoding(static_cast<XML_Parser>(this->Parser), "utf-8");
  2062. return 1;
  2063. }
  2064. std::string GUID;
  2065. };
  2066. void cmLocalVisualStudio7Generator::ReadAndStoreExternalGUID(
  2067. const char* name,
  2068. const char* path)
  2069. {
  2070. cmVS7XMLParser parser;
  2071. parser.ParseFile(path);
  2072. // if we can not find a GUID then create one
  2073. if(parser.GUID.size() == 0)
  2074. {
  2075. cmGlobalVisualStudio7Generator* gg =
  2076. static_cast<cmGlobalVisualStudio7Generator *>(this->GlobalGenerator);
  2077. gg->CreateGUID(name);
  2078. return;
  2079. }
  2080. std::string guidStoreName = name;
  2081. guidStoreName += "_GUID_CMAKE";
  2082. // save the GUID in the cache
  2083. this->GlobalGenerator->GetCMakeInstance()->
  2084. AddCacheEntry(guidStoreName.c_str(),
  2085. parser.GUID.c_str(),
  2086. "Stored GUID",
  2087. cmCacheManager::INTERNAL);
  2088. }
  2089. //----------------------------------------------------------------------------
  2090. std::string cmLocalVisualStudio7Generator
  2091. ::GetTargetDirectory(cmTarget const& target) const
  2092. {
  2093. std::string dir;
  2094. dir += target.GetName();
  2095. dir += ".dir";
  2096. return dir;
  2097. }
  2098. //----------------------------------------------------------------------------
  2099. #include <windows.h>
  2100. static bool cmLVS6G_IsFAT(const char* dir)
  2101. {
  2102. if(dir[0] && dir[1] == ':')
  2103. {
  2104. char volRoot[4] = "_:/";
  2105. volRoot[0] = dir[0];
  2106. char fsName[16];
  2107. if(GetVolumeInformation(volRoot, 0, 0, 0, 0, 0, fsName, 16) &&
  2108. strstr(fsName, "FAT") != 0)
  2109. {
  2110. return true;
  2111. }
  2112. }
  2113. return false;
  2114. }