cmVisualStudioGeneratorOptions.cxx 11 KB

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