cmVisualStudioGeneratorOptions.cxx 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. #include "cmVisualStudioGeneratorOptions.h"
  2. #include "cmSystemTools.h"
  3. #include <cmsys/System.h>
  4. #include "cmVisualStudio10TargetGenerator.h"
  5. inline std::string cmVisualStudio10GeneratorOptionsEscapeForXML(const char* s)
  6. {
  7. std::string ret = s;
  8. cmSystemTools::ReplaceString(ret, "&", "&amp;");
  9. cmSystemTools::ReplaceString(ret, "<", "&lt;");
  10. cmSystemTools::ReplaceString(ret, ">", "&gt;");
  11. return ret;
  12. }
  13. inline std::string cmVisualStudioGeneratorOptionsEscapeForXML(const char* s)
  14. {
  15. std::string ret = s;
  16. cmSystemTools::ReplaceString(ret, "&", "&amp;");
  17. cmSystemTools::ReplaceString(ret, "\"", "&quot;");
  18. cmSystemTools::ReplaceString(ret, "<", "&lt;");
  19. cmSystemTools::ReplaceString(ret, ">", "&gt;");
  20. cmSystemTools::ReplaceString(ret, "\n", "&#x0D;&#x0A;");
  21. return ret;
  22. }
  23. //----------------------------------------------------------------------------
  24. cmVisualStudioGeneratorOptions
  25. ::cmVisualStudioGeneratorOptions(cmLocalVisualStudioGenerator* lg,
  26. Tool tool,
  27. cmVS7FlagTable const* table,
  28. cmVS7FlagTable const* extraTable,
  29. cmVisualStudio10TargetGenerator* g):
  30. cmIDEOptions(),
  31. LocalGenerator(lg), Version(lg->GetVersion()), CurrentTool(tool),
  32. TargetGenerator(g)
  33. {
  34. // Store the given flag tables.
  35. cmIDEFlagTable const** ft = this->FlagTable;
  36. if(table) { *ft++ = table; }
  37. if(extraTable) { *ft++ = extraTable; }
  38. // Preprocessor definitions are not allowed for linker tools.
  39. this->AllowDefine = (tool != Linker);
  40. // Slash options are allowed for VS.
  41. this->AllowSlash = true;
  42. this->FortranRuntimeDebug = false;
  43. this->FortranRuntimeDLL = false;
  44. this->FortranRuntimeMT = false;
  45. }
  46. //----------------------------------------------------------------------------
  47. void cmVisualStudioGeneratorOptions::FixExceptionHandlingDefault()
  48. {
  49. // Exception handling is on by default because the platform file has
  50. // "/EHsc" in the flags. Normally, that will override this
  51. // initialization to off, but the user has the option of removing
  52. // the flag to disable exception handling. When the user does
  53. // remove the flag we need to override the IDE default of on.
  54. switch (this->Version)
  55. {
  56. case cmLocalVisualStudioGenerator::VS7:
  57. case cmLocalVisualStudioGenerator::VS71:
  58. this->FlagMap["ExceptionHandling"] = "FALSE";
  59. break;
  60. case cmLocalVisualStudioGenerator::VS10:
  61. case cmLocalVisualStudioGenerator::VS11:
  62. // by default VS puts <ExceptionHandling></ExceptionHandling> empty
  63. // for a project, to make our projects look the same put a new line
  64. // and space over for the closing </ExceptionHandling> as the default
  65. // value
  66. this->FlagMap["ExceptionHandling"] = "\n ";
  67. break;
  68. default:
  69. this->FlagMap["ExceptionHandling"] = "0";
  70. break;
  71. }
  72. }
  73. //----------------------------------------------------------------------------
  74. void cmVisualStudioGeneratorOptions::SetVerboseMakefile(bool verbose)
  75. {
  76. // If verbose makefiles have been requested and the /nologo option
  77. // was not given explicitly in the flags we want to add an attribute
  78. // to the generated project to disable logo suppression. Otherwise
  79. // the GUI default is to enable suppression.
  80. //
  81. // On Visual Studio 10 (and later!), the value of this attribute should be
  82. // an empty string, instead of "FALSE", in order to avoid a warning:
  83. // "cl ... warning D9035: option 'nologo-' has been deprecated"
  84. //
  85. if(verbose &&
  86. this->FlagMap.find("SuppressStartupBanner") == this->FlagMap.end())
  87. {
  88. this->FlagMap["SuppressStartupBanner"] =
  89. this->Version < cmLocalVisualStudioGenerator::VS10 ? "FALSE" : "";
  90. }
  91. }
  92. bool cmVisualStudioGeneratorOptions::IsDebug()
  93. {
  94. return this->FlagMap.find("DebugInformationFormat") != this->FlagMap.end();
  95. }
  96. //----------------------------------------------------------------------------
  97. bool cmVisualStudioGeneratorOptions::UsingUnicode()
  98. {
  99. // Look for the a _UNICODE definition.
  100. for(std::vector<std::string>::const_iterator di = this->Defines.begin();
  101. di != this->Defines.end(); ++di)
  102. {
  103. if(*di == "_UNICODE")
  104. {
  105. return true;
  106. }
  107. }
  108. return false;
  109. }
  110. //----------------------------------------------------------------------------
  111. void cmVisualStudioGeneratorOptions::Parse(const char* flags)
  112. {
  113. // Parse the input string as a windows command line since the string
  114. // is intended for writing directly into the build files.
  115. std::vector<std::string> args;
  116. cmSystemTools::ParseWindowsCommandLine(flags, args);
  117. // Process flags that need to be represented specially in the IDE
  118. // project file.
  119. for(std::vector<std::string>::iterator ai = args.begin();
  120. ai != args.end(); ++ai)
  121. {
  122. this->HandleFlag(ai->c_str());
  123. }
  124. }
  125. //----------------------------------------------------------------------------
  126. void cmVisualStudioGeneratorOptions::ParseFinish()
  127. {
  128. if(this->CurrentTool == FortranCompiler)
  129. {
  130. // "RuntimeLibrary" attribute values:
  131. // "rtMultiThreaded", "0", /threads /libs:static
  132. // "rtMultiThreadedDLL", "2", /threads /libs:dll
  133. // "rtMultiThreadedDebug", "1", /threads /dbglibs /libs:static
  134. // "rtMultiThreadedDebugDLL", "3", /threads /dbglibs /libs:dll
  135. // These seem unimplemented by the IDE:
  136. // "rtSingleThreaded", "4", /libs:static
  137. // "rtSingleThreadedDLL", "10", /libs:dll
  138. // "rtSingleThreadedDebug", "5", /dbglibs /libs:static
  139. // "rtSingleThreadedDebugDLL", "11", /dbglibs /libs:dll
  140. std::string rl = "rtMultiThreaded";
  141. rl += this->FortranRuntimeDebug? "Debug" : "";
  142. rl += this->FortranRuntimeDLL? "DLL" : "";
  143. this->FlagMap["RuntimeLibrary"] = rl;
  144. }
  145. }
  146. //----------------------------------------------------------------------------
  147. void cmVisualStudioGeneratorOptions::StoreUnknownFlag(const char* flag)
  148. {
  149. // Look for Intel Fortran flags that do not map well in the flag table.
  150. if(this->CurrentTool == FortranCompiler)
  151. {
  152. if(strcmp(flag, "/dbglibs") == 0)
  153. {
  154. this->FortranRuntimeDebug = true;
  155. return;
  156. }
  157. if(strcmp(flag, "/threads") == 0)
  158. {
  159. this->FortranRuntimeMT = true;
  160. return;
  161. }
  162. if(strcmp(flag, "/libs:dll") == 0)
  163. {
  164. this->FortranRuntimeDLL = true;
  165. return;
  166. }
  167. if(strcmp(flag, "/libs:static") == 0)
  168. {
  169. this->FortranRuntimeDLL = false;
  170. return;
  171. }
  172. }
  173. // This option is not known. Store it in the output flags.
  174. this->FlagString += " ";
  175. this->FlagString +=
  176. cmSystemTools::EscapeWindowsShellArgument(
  177. flag,
  178. cmsysSystem_Shell_Flag_AllowMakeVariables |
  179. cmsysSystem_Shell_Flag_VSIDE);
  180. }
  181. //----------------------------------------------------------------------------
  182. void cmVisualStudioGeneratorOptions::SetConfiguration(const char* config)
  183. {
  184. this->Configuration = config;
  185. }
  186. //----------------------------------------------------------------------------
  187. void
  188. cmVisualStudioGeneratorOptions
  189. ::OutputPreprocessorDefinitions(std::ostream& fout,
  190. const char* prefix,
  191. const char* suffix,
  192. const char* lang)
  193. {
  194. if(this->Defines.empty())
  195. {
  196. return;
  197. }
  198. if(this->Version >= cmLocalVisualStudioGenerator::VS10)
  199. {
  200. // if there are configuration specifc flags, then
  201. // use the configuration specific tag for PreprocessorDefinitions
  202. if(this->Configuration.size())
  203. {
  204. fout << prefix;
  205. this->TargetGenerator->WritePlatformConfigTag(
  206. "PreprocessorDefinitions",
  207. this->Configuration.c_str(),
  208. 0,
  209. 0, 0, &fout);
  210. }
  211. else
  212. {
  213. fout << prefix << "<PreprocessorDefinitions>";
  214. }
  215. }
  216. else
  217. {
  218. fout << prefix << "PreprocessorDefinitions=\"";
  219. }
  220. const char* sep = "";
  221. for(std::vector<std::string>::const_iterator di = this->Defines.begin();
  222. di != this->Defines.end(); ++di)
  223. {
  224. // Escape the definition for the compiler.
  225. std::string define;
  226. if(this->Version < cmLocalVisualStudioGenerator::VS10)
  227. {
  228. define =
  229. this->LocalGenerator->EscapeForShell(di->c_str(), true);
  230. }
  231. else
  232. {
  233. define = *di;
  234. }
  235. // Escape this flag for the IDE.
  236. if(this->Version >= cmLocalVisualStudioGenerator::VS10)
  237. {
  238. define = cmVisualStudio10GeneratorOptionsEscapeForXML(define.c_str());
  239. if(0 == strcmp(lang, "RC"))
  240. {
  241. cmSystemTools::ReplaceString(define, "\"", "\\\"");
  242. }
  243. }
  244. else
  245. {
  246. define = cmVisualStudioGeneratorOptionsEscapeForXML(define.c_str());
  247. }
  248. // Store the flag in the project file.
  249. fout << sep << define;
  250. sep = ";";
  251. }
  252. if(this->Version >= cmLocalVisualStudioGenerator::VS10)
  253. {
  254. fout << ";%(PreprocessorDefinitions)</PreprocessorDefinitions>" << suffix;
  255. }
  256. else
  257. {
  258. fout << "\"" << suffix;
  259. }
  260. }
  261. //----------------------------------------------------------------------------
  262. void
  263. cmVisualStudioGeneratorOptions
  264. ::OutputFlagMap(std::ostream& fout, const char* indent)
  265. {
  266. if(this->Version >= cmLocalVisualStudioGenerator::VS10)
  267. {
  268. for(std::map<cmStdString, cmStdString>::iterator m = this->FlagMap.begin();
  269. m != this->FlagMap.end(); ++m)
  270. {
  271. fout << indent;
  272. if(this->Configuration.size())
  273. {
  274. this->TargetGenerator->WritePlatformConfigTag(
  275. m->first.c_str(),
  276. this->Configuration.c_str(),
  277. 0,
  278. 0, 0, &fout);
  279. }
  280. else
  281. {
  282. fout << "<" << m->first << ">";
  283. }
  284. fout << m->second;
  285. if (m->first == "AdditionalIncludeDirectories")
  286. {
  287. fout << ";%(AdditionalIncludeDirectories)";
  288. }
  289. fout << "</" << m->first << ">\n";
  290. }
  291. }
  292. else
  293. {
  294. for(std::map<cmStdString, cmStdString>::iterator m = this->FlagMap.begin();
  295. m != this->FlagMap.end(); ++m)
  296. {
  297. fout << indent << m->first << "=\"" << m->second << "\"\n";
  298. }
  299. }
  300. }
  301. //----------------------------------------------------------------------------
  302. void
  303. cmVisualStudioGeneratorOptions
  304. ::OutputAdditionalOptions(std::ostream& fout,
  305. const char* prefix,
  306. const char* suffix)
  307. {
  308. if(!this->FlagString.empty())
  309. {
  310. if(this->Version >= cmLocalVisualStudioGenerator::VS10)
  311. {
  312. fout << prefix;
  313. if(this->Configuration.size())
  314. {
  315. this->TargetGenerator->WritePlatformConfigTag(
  316. "AdditionalOptions",
  317. this->Configuration.c_str(),
  318. 0,
  319. 0, 0, &fout);
  320. }
  321. else
  322. {
  323. fout << "<AdditionalOptions>";
  324. }
  325. fout << this->FlagString.c_str()
  326. << " %(AdditionalOptions)</AdditionalOptions>\n";
  327. }
  328. else
  329. {
  330. fout << prefix << "AdditionalOptions=\"";
  331. fout <<
  332. cmVisualStudioGeneratorOptionsEscapeForXML(this->FlagString.c_str());
  333. fout << "\"" << suffix;
  334. }
  335. }
  336. }