cmLocalVisualStudio7Generator.cxx 77 KB

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