| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470 | 
							- #include "cmVisualStudioGeneratorOptions.h"
 
- #include "cmLocalVisualStudioGenerator.h"
 
- #include "cmOutputConverter.h"
 
- #include "cmSystemTools.h"
 
- #include "cmVisualStudio10TargetGenerator.h"
 
- static std::string cmVisualStudio10GeneratorOptionsEscapeForXML(
 
-   std::string ret)
 
- {
 
-   cmSystemTools::ReplaceString(ret, ";", "%3B");
 
-   cmSystemTools::ReplaceString(ret, "&", "&");
 
-   cmSystemTools::ReplaceString(ret, "<", "<");
 
-   cmSystemTools::ReplaceString(ret, ">", ">");
 
-   return ret;
 
- }
 
- static std::string cmVisualStudioGeneratorOptionsEscapeForXML(std::string ret)
 
- {
 
-   cmSystemTools::ReplaceString(ret, "&", "&");
 
-   cmSystemTools::ReplaceString(ret, "\"", """);
 
-   cmSystemTools::ReplaceString(ret, "<", "<");
 
-   cmSystemTools::ReplaceString(ret, ">", ">");
 
-   cmSystemTools::ReplaceString(ret, "\n", "
");
 
-   return ret;
 
- }
 
- cmVisualStudioGeneratorOptions::cmVisualStudioGeneratorOptions(
 
-   cmLocalVisualStudioGenerator* lg, Tool tool,
 
-   cmVisualStudio10TargetGenerator* g)
 
-   : cmIDEOptions()
 
-   , LocalGenerator(lg)
 
-   , Version(lg->GetVersion())
 
-   , CurrentTool(tool)
 
-   , TargetGenerator(g)
 
- {
 
-   // Preprocessor definitions are not allowed for linker tools.
 
-   this->AllowDefine = (tool != Linker);
 
-   // Slash options are allowed for VS.
 
-   this->AllowSlash = true;
 
-   this->FortranRuntimeDebug = false;
 
-   this->FortranRuntimeDLL = false;
 
-   this->FortranRuntimeMT = false;
 
-   this->UnknownFlagField = "AdditionalOptions";
 
- }
 
- cmVisualStudioGeneratorOptions::cmVisualStudioGeneratorOptions(
 
-   cmLocalVisualStudioGenerator* lg, Tool tool, cmVS7FlagTable const* table,
 
-   cmVS7FlagTable const* extraTable, cmVisualStudio10TargetGenerator* g)
 
-   : cmIDEOptions()
 
-   , LocalGenerator(lg)
 
-   , Version(lg->GetVersion())
 
-   , CurrentTool(tool)
 
-   , TargetGenerator(g)
 
- {
 
-   // Store the given flag tables.
 
-   this->AddTable(table);
 
-   this->AddTable(extraTable);
 
-   // Preprocessor definitions are not allowed for linker tools.
 
-   this->AllowDefine = (tool != Linker);
 
-   // Slash options are allowed for VS.
 
-   this->AllowSlash = true;
 
-   this->FortranRuntimeDebug = false;
 
-   this->FortranRuntimeDLL = false;
 
-   this->FortranRuntimeMT = false;
 
-   this->UnknownFlagField = "AdditionalOptions";
 
- }
 
- void cmVisualStudioGeneratorOptions::AddTable(cmVS7FlagTable const* table)
 
- {
 
-   if (table) {
 
-     for (int i = 0; i < FlagTableCount; ++i) {
 
-       if (!this->FlagTable[i]) {
 
-         this->FlagTable[i] = table;
 
-         break;
 
-       }
 
-     }
 
-   }
 
- }
 
- void cmVisualStudioGeneratorOptions::ClearTables()
 
- {
 
-   for (int i = 0; i < FlagTableCount; ++i) {
 
-     this->FlagTable[i] = CM_NULLPTR;
 
-   }
 
- }
 
- void cmVisualStudioGeneratorOptions::FixExceptionHandlingDefault()
 
- {
 
-   // Exception handling is on by default because the platform file has
 
-   // "/EHsc" in the flags.  Normally, that will override this
 
-   // initialization to off, but the user has the option of removing
 
-   // the flag to disable exception handling.  When the user does
 
-   // remove the flag we need to override the IDE default of on.
 
-   switch (this->Version) {
 
-     case cmGlobalVisualStudioGenerator::VS7:
 
-     case cmGlobalVisualStudioGenerator::VS71:
 
-       this->FlagMap["ExceptionHandling"] = "FALSE";
 
-       break;
 
-     case cmGlobalVisualStudioGenerator::VS10:
 
-     case cmGlobalVisualStudioGenerator::VS11:
 
-     case cmGlobalVisualStudioGenerator::VS12:
 
-     case cmGlobalVisualStudioGenerator::VS14:
 
-     case cmGlobalVisualStudioGenerator::VS15:
 
-       // by default VS puts <ExceptionHandling></ExceptionHandling> empty
 
-       // for a project, to make our projects look the same put a new line
 
-       // and space over for the closing </ExceptionHandling> as the default
 
-       // value
 
-       this->FlagMap["ExceptionHandling"] = "\n      ";
 
-       break;
 
-     default:
 
-       this->FlagMap["ExceptionHandling"] = "0";
 
-       break;
 
-   }
 
- }
 
- void cmVisualStudioGeneratorOptions::SetVerboseMakefile(bool verbose)
 
- {
 
-   // If verbose makefiles have been requested and the /nologo option
 
-   // was not given explicitly in the flags we want to add an attribute
 
-   // to the generated project to disable logo suppression.  Otherwise
 
-   // the GUI default is to enable suppression.
 
-   //
 
-   // On Visual Studio 10 (and later!), the value of this attribute should be
 
-   // an empty string, instead of "FALSE", in order to avoid a warning:
 
-   //   "cl ... warning D9035: option 'nologo-' has been deprecated"
 
-   //
 
-   if (verbose &&
 
-       this->FlagMap.find("SuppressStartupBanner") == this->FlagMap.end()) {
 
-     this->FlagMap["SuppressStartupBanner"] =
 
-       this->Version < cmGlobalVisualStudioGenerator::VS10 ? "FALSE" : "";
 
-   }
 
- }
 
- bool cmVisualStudioGeneratorOptions::IsDebug() const
 
- {
 
-   if (this->CurrentTool != CSharpCompiler) {
 
-     return this->FlagMap.find("DebugInformationFormat") != this->FlagMap.end();
 
-   }
 
-   std::map<std::string, FlagValue>::const_iterator i =
 
-     this->FlagMap.find("DebugType");
 
-   if (i != this->FlagMap.end()) {
 
-     if (i->second.size() == 1) {
 
-       return i->second[0] != "none";
 
-     }
 
-   }
 
-   return false;
 
- }
 
- bool cmVisualStudioGeneratorOptions::IsWinRt() const
 
- {
 
-   return this->FlagMap.find("CompileAsWinRT") != this->FlagMap.end();
 
- }
 
- bool cmVisualStudioGeneratorOptions::IsManaged() const
 
- {
 
-   return this->FlagMap.find("CompileAsManaged") != this->FlagMap.end();
 
- }
 
- bool cmVisualStudioGeneratorOptions::UsingUnicode() const
 
- {
 
-   // Look for the a _UNICODE definition.
 
-   for (std::vector<std::string>::const_iterator di = this->Defines.begin();
 
-        di != this->Defines.end(); ++di) {
 
-     if (*di == "_UNICODE") {
 
-       return true;
 
-     }
 
-   }
 
-   return false;
 
- }
 
- bool cmVisualStudioGeneratorOptions::UsingSBCS() const
 
- {
 
-   // Look for the a _SBCS definition.
 
-   for (std::vector<std::string>::const_iterator di = this->Defines.begin();
 
-        di != this->Defines.end(); ++di) {
 
-     if (*di == "_SBCS") {
 
-       return true;
 
-     }
 
-   }
 
-   return false;
 
- }
 
- cmVisualStudioGeneratorOptions::CudaRuntime
 
- cmVisualStudioGeneratorOptions::GetCudaRuntime() const
 
- {
 
-   std::map<std::string, FlagValue>::const_iterator i =
 
-     this->FlagMap.find("CudaRuntime");
 
-   if (i != this->FlagMap.end() && i->second.size() == 1) {
 
-     std::string const& cudaRuntime = i->second[0];
 
-     if (cudaRuntime == "Static") {
 
-       return CudaRuntimeStatic;
 
-     }
 
-     if (cudaRuntime == "Shared") {
 
-       return CudaRuntimeShared;
 
-     }
 
-     if (cudaRuntime == "None") {
 
-       return CudaRuntimeNone;
 
-     }
 
-   }
 
-   // nvcc default is static
 
-   return CudaRuntimeStatic;
 
- }
 
- void cmVisualStudioGeneratorOptions::FixCudaCodeGeneration()
 
- {
 
-   // Extract temporary values stored by our flag table.
 
-   FlagValue arch = this->TakeFlag("cmake-temp-arch");
 
-   FlagValue code = this->TakeFlag("cmake-temp-code");
 
-   FlagValue gencode = this->TakeFlag("cmake-temp-gencode");
 
-   // No -code allowed without -arch.
 
-   if (arch.empty()) {
 
-     code.clear();
 
-   }
 
-   if (arch.empty() && gencode.empty()) {
 
-     return;
 
-   }
 
-   // Create a CodeGeneration field with [arch],[code] syntax in each entry.
 
-   // CUDA will convert it to `-gencode=arch=[arch],code="[code],[arch]"`.
 
-   FlagValue& result = this->FlagMap["CodeGeneration"];
 
-   // First entries for the -arch=<arch> [-code=<code>,...] pair.
 
-   if (!arch.empty()) {
 
-     std::string arch_name = arch[0];
 
-     std::vector<std::string> codes;
 
-     if (!code.empty()) {
 
-       codes = cmSystemTools::tokenize(code[0], ",");
 
-     }
 
-     if (codes.empty()) {
 
-       codes.push_back(arch_name);
 
-       // nvcc -arch=<arch> has a special case that allows a real
 
-       // architecture to be specified instead of a virtual arch.
 
-       // It translates to -arch=<virtual> -code=<real>.
 
-       cmSystemTools::ReplaceString(arch_name, "sm_", "compute_");
 
-     }
 
-     for (std::vector<std::string>::iterator ci = codes.begin();
 
-          ci != codes.end(); ++ci) {
 
-       std::string entry = arch_name + "," + *ci;
 
-       result.push_back(entry);
 
-     }
 
-   }
 
-   // Now add entries for the -gencode=<arch>,<code> pairs.
 
-   for (std::vector<std::string>::iterator ei = gencode.begin();
 
-        ei != gencode.end(); ++ei) {
 
-     std::string entry = *ei;
 
-     cmSystemTools::ReplaceString(entry, "arch=", "");
 
-     cmSystemTools::ReplaceString(entry, "code=", "");
 
-     result.push_back(entry);
 
-   }
 
- }
 
- void cmVisualStudioGeneratorOptions::Parse(const char* flags)
 
- {
 
-   // Parse the input string as a windows command line since the string
 
-   // is intended for writing directly into the build files.
 
-   std::vector<std::string> args;
 
-   cmSystemTools::ParseWindowsCommandLine(flags, args);
 
-   // Process flags that need to be represented specially in the IDE
 
-   // project file.
 
-   for (std::vector<std::string>::iterator ai = args.begin(); ai != args.end();
 
-        ++ai) {
 
-     this->HandleFlag(ai->c_str());
 
-   }
 
- }
 
- void cmVisualStudioGeneratorOptions::ParseFinish()
 
- {
 
-   if (this->CurrentTool == FortranCompiler) {
 
-     // "RuntimeLibrary" attribute values:
 
-     //  "rtMultiThreaded", "0", /threads /libs:static
 
-     //  "rtMultiThreadedDLL", "2", /threads /libs:dll
 
-     //  "rtMultiThreadedDebug", "1", /threads /dbglibs /libs:static
 
-     //  "rtMultiThreadedDebugDLL", "3", /threads /dbglibs /libs:dll
 
-     // These seem unimplemented by the IDE:
 
-     //  "rtSingleThreaded", "4", /libs:static
 
-     //  "rtSingleThreadedDLL", "10", /libs:dll
 
-     //  "rtSingleThreadedDebug", "5", /dbglibs /libs:static
 
-     //  "rtSingleThreadedDebugDLL", "11", /dbglibs /libs:dll
 
-     std::string rl = "rtMultiThreaded";
 
-     rl += this->FortranRuntimeDebug ? "Debug" : "";
 
-     rl += this->FortranRuntimeDLL ? "DLL" : "";
 
-     this->FlagMap["RuntimeLibrary"] = rl;
 
-   }
 
-   if (this->CurrentTool == CudaCompiler) {
 
-     std::map<std::string, FlagValue>::iterator i =
 
-       this->FlagMap.find("CudaRuntime");
 
-     if (i != this->FlagMap.end() && i->second.size() == 1) {
 
-       std::string& cudaRuntime = i->second[0];
 
-       if (cudaRuntime == "static") {
 
-         cudaRuntime = "Static";
 
-       } else if (cudaRuntime == "shared") {
 
-         cudaRuntime = "Shared";
 
-       } else if (cudaRuntime == "none") {
 
-         cudaRuntime = "None";
 
-       }
 
-     }
 
-   }
 
- }
 
- void cmVisualStudioGeneratorOptions::PrependInheritedString(
 
-   std::string const& key)
 
- {
 
-   std::map<std::string, FlagValue>::iterator i = this->FlagMap.find(key);
 
-   if (i == this->FlagMap.end() || i->second.size() != 1) {
 
-     return;
 
-   }
 
-   std::string& value = i->second[0];
 
-   value = "%(" + key + ") " + value;
 
- }
 
- void cmVisualStudioGeneratorOptions::Reparse(std::string const& key)
 
- {
 
-   std::map<std::string, FlagValue>::iterator i = this->FlagMap.find(key);
 
-   if (i == this->FlagMap.end() || i->second.size() != 1) {
 
-     return;
 
-   }
 
-   std::string const original = i->second[0];
 
-   i->second[0] = "";
 
-   this->UnknownFlagField = key;
 
-   this->Parse(original.c_str());
 
- }
 
- void cmVisualStudioGeneratorOptions::StoreUnknownFlag(const char* flag)
 
- {
 
-   // Look for Intel Fortran flags that do not map well in the flag table.
 
-   if (this->CurrentTool == FortranCompiler) {
 
-     if (strcmp(flag, "/dbglibs") == 0) {
 
-       this->FortranRuntimeDebug = true;
 
-       return;
 
-     }
 
-     if (strcmp(flag, "/threads") == 0) {
 
-       this->FortranRuntimeMT = true;
 
-       return;
 
-     }
 
-     if (strcmp(flag, "/libs:dll") == 0) {
 
-       this->FortranRuntimeDLL = true;
 
-       return;
 
-     }
 
-     if (strcmp(flag, "/libs:static") == 0) {
 
-       this->FortranRuntimeDLL = false;
 
-       return;
 
-     }
 
-   }
 
-   // This option is not known.  Store it in the output flags.
 
-   std::string const opts = cmOutputConverter::EscapeWindowsShellArgument(
 
-     flag, cmOutputConverter::Shell_Flag_AllowMakeVariables |
 
-       cmOutputConverter::Shell_Flag_VSIDE);
 
-   this->AppendFlagString(this->UnknownFlagField, opts);
 
- }
 
- cmIDEOptions::FlagValue cmVisualStudioGeneratorOptions::TakeFlag(
 
-   std::string const& key)
 
- {
 
-   FlagValue value;
 
-   std::map<std::string, FlagValue>::iterator i = this->FlagMap.find(key);
 
-   if (i != this->FlagMap.end()) {
 
-     value = i->second;
 
-     this->FlagMap.erase(i);
 
-   }
 
-   return value;
 
- }
 
- void cmVisualStudioGeneratorOptions::SetConfiguration(const char* config)
 
- {
 
-   this->Configuration = config;
 
- }
 
- void cmVisualStudioGeneratorOptions::OutputPreprocessorDefinitions(
 
-   std::ostream& fout, const char* prefix, const char* suffix,
 
-   const std::string& lang)
 
- {
 
-   if (this->Defines.empty()) {
 
-     return;
 
-   }
 
-   const char* tag = "PreprocessorDefinitions";
 
-   if (lang == "CUDA") {
 
-     tag = "Defines";
 
-   }
 
-   if (this->Version >= cmGlobalVisualStudioGenerator::VS10) {
 
-     // if there are configuration specific flags, then
 
-     // use the configuration specific tag for PreprocessorDefinitions
 
-     if (!this->Configuration.empty()) {
 
-       fout << prefix;
 
-       this->TargetGenerator->WritePlatformConfigTag(
 
-         tag, this->Configuration.c_str(), 0, 0, 0, &fout);
 
-     } else {
 
-       fout << prefix << "<" << tag << ">";
 
-     }
 
-   } else {
 
-     fout << prefix << tag << "=\"";
 
-   }
 
-   const char* sep = "";
 
-   for (std::vector<std::string>::const_iterator di = this->Defines.begin();
 
-        di != this->Defines.end(); ++di) {
 
-     // Escape the definition for the compiler.
 
-     std::string define;
 
-     if (this->Version < cmGlobalVisualStudioGenerator::VS10) {
 
-       define = this->LocalGenerator->EscapeForShell(di->c_str(), true);
 
-     } else {
 
-       define = *di;
 
-     }
 
-     // Escape this flag for the IDE.
 
-     if (this->Version >= cmGlobalVisualStudioGenerator::VS10) {
 
-       define = cmVisualStudio10GeneratorOptionsEscapeForXML(define);
 
-       if (lang == "RC") {
 
-         cmSystemTools::ReplaceString(define, "\"", "\\\"");
 
-       }
 
-     } else {
 
-       define = cmVisualStudioGeneratorOptionsEscapeForXML(define);
 
-     }
 
-     // Store the flag in the project file.
 
-     fout << sep << define;
 
-     sep = ";";
 
-   }
 
-   if (this->Version >= cmGlobalVisualStudioGenerator::VS10) {
 
-     fout << ";%(" << tag << ")</" << tag << ">" << suffix;
 
-   } else {
 
-     fout << "\"" << suffix;
 
-   }
 
- }
 
- void cmVisualStudioGeneratorOptions::OutputFlagMap(std::ostream& fout,
 
-                                                    const char* indent)
 
- {
 
-   if (this->Version >= cmGlobalVisualStudioGenerator::VS10) {
 
-     for (std::map<std::string, FlagValue>::iterator m = this->FlagMap.begin();
 
-          m != this->FlagMap.end(); ++m) {
 
-       fout << indent;
 
-       if (!this->Configuration.empty()) {
 
-         this->TargetGenerator->WritePlatformConfigTag(
 
-           m->first.c_str(), this->Configuration.c_str(), 0, 0, 0, &fout);
 
-       } else {
 
-         fout << "<" << m->first << ">";
 
-       }
 
-       const char* sep = "";
 
-       for (std::vector<std::string>::iterator i = m->second.begin();
 
-            i != m->second.end(); ++i) {
 
-         fout << sep << cmVisualStudio10GeneratorOptionsEscapeForXML(*i);
 
-         sep = ";";
 
-       }
 
-       fout << "</" << m->first << ">\n";
 
-     }
 
-   } else {
 
-     for (std::map<std::string, FlagValue>::iterator m = this->FlagMap.begin();
 
-          m != this->FlagMap.end(); ++m) {
 
-       fout << indent << m->first << "=\"";
 
-       const char* sep = "";
 
-       for (std::vector<std::string>::iterator i = m->second.begin();
 
-            i != m->second.end(); ++i) {
 
-         fout << sep << cmVisualStudioGeneratorOptionsEscapeForXML(*i);
 
-         sep = ";";
 
-       }
 
-       fout << "\"\n";
 
-     }
 
-   }
 
- }
 
 
  |