/*========================================================================= Program: CMake - Cross-Platform Makefile Generator Module: $RCSfile$ Language: C++ Date: $Date$ Version: $Revision$ Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #include "cmGlobalVisualStudio7Generator.h" #include "cmLocalVisualStudio7Generator.h" #include "cmMakefile.h" #include "cmSystemTools.h" #include "cmSourceFile.h" #include "cmCacheManager.h" #include "cmake.h" cmLocalVisualStudio7Generator::cmLocalVisualStudio7Generator() { m_Version = 7; } cmLocalVisualStudio7Generator::~cmLocalVisualStudio7Generator() { } void cmLocalVisualStudio7Generator::Generate(bool /* fromTheTop */) { this->OutputVCProjFile(); } // TODO // for CommandLine= need to repleace quotes with " // write out configurations void cmLocalVisualStudio7Generator::OutputVCProjFile() { // If not an in source build, then create the output directory if(strcmp(m_Makefile->GetStartOutputDirectory(), m_Makefile->GetHomeDirectory()) != 0) { if(!cmSystemTools::MakeDirectory(m_Makefile->GetStartOutputDirectory())) { cmSystemTools::Error("Error creating directory ", m_Makefile->GetStartOutputDirectory()); } } m_LibraryOutputPath = ""; if (m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH")) { m_LibraryOutputPath = m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH"); } if(m_LibraryOutputPath.size()) { // make sure there is a trailing slash if(m_LibraryOutputPath[m_LibraryOutputPath.size()-1] != '/') { m_LibraryOutputPath += "/"; } } m_ExecutableOutputPath = ""; if (m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH")) { m_ExecutableOutputPath = m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH"); } if(m_ExecutableOutputPath.size()) { // make sure there is a trailing slash if(m_ExecutableOutputPath[m_ExecutableOutputPath.size()-1] != '/') { m_ExecutableOutputPath += "/"; } } // Create the VCProj or set of VCProj's for libraries and executables // clear project names m_CreatedProjectNames.clear(); // expand vars for custom commands m_Makefile->ExpandVariablesInCustomCommands(); // build any targets cmTargets &tgts = m_Makefile->GetTargets(); for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); l++) { // INCLUDE_EXTERNAL_MSPROJECT command only affects the workspace // so don't build a projectfile for it if ((l->second.GetType() != cmTarget::INSTALL_FILES) && (l->second.GetType() != cmTarget::INSTALL_PROGRAMS) && (strncmp(l->first.c_str(), "INCLUDE_EXTERNAL_MSPROJECT", 26) != 0)) { this->CreateSingleVCProj(l->first.c_str(),l->second); } } } void cmLocalVisualStudio7Generator::CreateSingleVCProj(const char *lname, cmTarget &target) { // add to the list of projects std::string pname = lname; m_CreatedProjectNames.push_back(pname); // create the dsp.cmake file std::string fname; fname = m_Makefile->GetStartOutputDirectory(); fname += "/"; fname += lname; fname += ".vcproj"; // save the name of the real dsp file std::string realVCProj = fname; fname += ".cmake"; std::ofstream fout(fname.c_str()); if(!fout) { cmSystemTools::Error("Error Writing ", fname.c_str()); } this->WriteVCProjFile(fout,lname,target); fout.close(); // if the dsp file has changed, then write it. cmSystemTools::CopyFileIfDifferent(fname.c_str(), realVCProj.c_str()); } void cmLocalVisualStudio7Generator::AddVCProjBuildRule() { std::string dspname = *(m_CreatedProjectNames.end()-1); dspname += ".vcproj.cmake"; std::string makefileIn = m_Makefile->GetStartDirectory(); makefileIn += "/"; makefileIn += "CMakeLists.txt"; makefileIn = this->ConvertToRelativeOutputPath(makefileIn.c_str()); std::string dsprule = "${CMAKE_COMMAND}"; m_Makefile->ExpandVariablesInString(dsprule); dsprule = this->ConvertToRelativeOutputPath(dsprule.c_str()); std::vector argv; argv.push_back(makefileIn); makefileIn = m_Makefile->GetStartDirectory(); makefileIn += "/"; makefileIn += "CMakeLists.txt"; std::string args; args = "-H"; args += this->ConvertToRelativeOutputPath(m_Makefile->GetHomeDirectory()); argv.push_back(args); args = "-B"; args += this->ConvertToRelativeOutputPath(m_Makefile->GetHomeOutputDirectory()); argv.push_back(args); std::string configFile = m_Makefile->GetRequiredDefinition("CMAKE_ROOT"); configFile += "/Templates/CMakeWindowsSystemConfig.cmake"; std::vector listFiles = m_Makefile->GetListFiles(); bool found = false; for(std::vector::iterator i = listFiles.begin(); i != listFiles.end(); ++i) { if(*i == configFile) { found = true; } } if(!found) { listFiles.push_back(configFile); } m_Makefile->AddCustomCommandToOutput(dspname.c_str(), dsprule.c_str(), argv, makefileIn.c_str(), listFiles, NULL, true); } void cmLocalVisualStudio7Generator::WriteConfigurations(std::ostream& fout, const char *libName, const cmTarget &target) { std::vector *configs = static_cast(m_GlobalGenerator)->GetConfigurations(); fout << "\t\n"; for( std::vector::iterator i = configs->begin(); i != configs->end(); ++i) { this->WriteConfiguration(fout, i->c_str(), libName, target); } fout << "\t\n"; } // This is a table mapping XML tag IDE names to command line options struct cmVS7FlagTable { const char* IDEName; // name used in the IDE xml file const char* commandFlag; // command line flag const char* comment; // comment const char* value; // string value }; // fill the table here // currently the comment field is not used for anything other than documentation // NOTE: Make sure the longer commandFlag comes FIRST! cmVS7FlagTable cmLocalVisualStudio7GeneratorFlagTable[] = { // option flags (some flags map to the same option) {"BasicRuntimeChecks", "GZ", "Stack frame checks", "1"}, {"BasicRuntimeChecks", "RTCsu", "Both stack and uninitialized checks ", "3"}, {"BasicRuntimeChecks", "RTCs", "Stack frame checks", "1"}, {"BasicRuntimeChecks", "RTCu", "Uninitialized Variables ", "2"}, {"BasicRuntimeChecks", "RTC1", "Both stack and uninitialized checks ", "3"}, {"DebugInformationFormat", "Z7", "debug format", "1"}, {"DebugInformationFormat", "Zd", "debug format", "2"}, {"DebugInformationFormat", "Zi", "debug format", "3"}, {"DebugInformationFormat", "ZI", "debug format", "4"}, {"EnableEnhancedInstructionSet", "arch:SSE2", "Use sse2 instructions", "2"}, {"EnableEnhancedInstructionSet", "arch:SSE", "Use sse instructions", "1"}, {"FavorSizeOrSpeed", "Ot", "Favor fast code", "1"}, {"FavorSizeOrSpeed", "Os", "Favor small code", "2"}, {"Optimization", "Od", "Non Debug", "0"}, {"Optimization", "O1", "Min Size", "1"}, {"Optimization", "O2", "Max Speed", "2"}, {"Optimization", "Ox", "Max Optimization", "3"}, {"OptimizeForProcessor", "GB", "Blended processor mode", "0"}, {"OptimizeForProcessor", "G5", "Pentium", "1"}, {"OptimizeForProcessor", "G6", "PPro PII PIII", "2"}, {"OptimizeForProcessor", "G7", "Pentium 4 or Athlon", "3"}, {"InlineFunctionExpansion", "Ob0", "no inlines", "0"}, {"InlineFunctionExpansion", "Ob1", "when inline keyword", "1"}, {"InlineFunctionExpansion", "Ob2", "any time you can inline", "2"}, {"RuntimeLibrary", "MTd", "Multithreded debug", "1"}, {"RuntimeLibrary", "MT", "Multithreded", "0"}, {"RuntimeLibrary", "MDd", "Multithreded dll debug", "3"}, {"RuntimeLibrary", "MD", "Multithreded dll", "2"}, {"RuntimeLibrary", "MLd", "Sinble Thread debug", "5"}, {"RuntimeLibrary", "ML", "Sinble Thread", "4"}, {"StructMemberAlignment", "Zp16", "struct align 16 byte ", "5"}, {"StructMemberAlignment", "Zp1", "struct align 1 byte ", "1"}, {"StructMemberAlignment", "Zp2", "struct align 2 byte ", "2"}, {"StructMemberAlignment", "Zp4", "struct align 4 byte ", "3"}, {"StructMemberAlignment", "Zp8", "struct align 8 byte ", "4"}, {"WarningLevel", "W1", "Warning level", "1"}, {"WarningLevel", "W2", "Warning level", "2"}, {"WarningLevel", "W3", "Warning level", "3"}, {"WarningLevel", "W4", "Warning level", "4"}, // boolean flags {"BufferSecurityCheck", "GS", "Buffer security check", "TRUE"}, {"EnableFibreSafeOptimization", "GT", "OmitFramePointers", "TRUE"}, {"EnableIntrinsicFunctions", "Oi", "EnableIntrinsicFunctions", "TRUE"}, {"ExceptionHandling", "EHsc", "enable c++ exceptions", "TRUE"}, {"ExceptionHandling", "GX", "enable c++ exceptions", "TRUE"}, {"GlobalOptimizations", "Og", "Global Optimize", "TRUE"}, {"ImproveFloatingPointConsistency", "Op", "ImproveFloatingPointConsistency", "TRUE"}, {"MinimalRebuild", "Gm", "minimal rebuild", "TRUE"}, {"OmitFramePointers", "Oy", "OmitFramePointers", "TRUE"}, {"OptimizeForWindowsApplication", "GA", "Optimize for windows", "TRUE"}, {"RuntimeTypeInfo", "GR", "Turn on Run time type information for c++", "TRUE"}, {"SmallerTypeCheck", "RTCc", "smaller type check", "TRUE"}, {"WarnAsError", "WX", "Treat warnings as errors", "TRUE"}, {0,0,0,0 } }; void cmLocalVisualStudio7Generator::WriteConfiguration(std::ostream& fout, const char* configName, const char *libName, const cmTarget &target) { // create a map of xml tags to the values they should have in the output // for example, "BufferSecurityCheck" = "TRUE" // first fill this table with the values for the configuration Debug, Release, etc, // Then parse the command line flags specified in CMAKE_CXX_FLAGS and CMAKE_C_FLAGS // and overwrite or add new values to this map std::map flagMap; const char* mfcFlag = m_Makefile->GetDefinition("CMAKE_MFC_FLAG"); if(!mfcFlag) { mfcFlag = "0"; } fout << "\t\tGetRequiredDefinition("CMAKE_CXX_FLAGS"); flagsRelease += m_Makefile->GetRequiredDefinition("CMAKE_CXX_FLAGS_RELEASE"); flagsMinSize += m_Makefile->GetRequiredDefinition("CMAKE_CXX_FLAGS_MINSIZEREL"); flagsDebug += m_Makefile->GetRequiredDefinition("CMAKE_CXX_FLAGS_DEBUG"); flagsDebugRel += m_Makefile->GetRequiredDefinition("CMAKE_CXX_FLAGS_RELWITHDEBINFO"); } else { flags = m_Makefile->GetRequiredDefinition("CMAKE_C_FLAGS"); flagsRelease += m_Makefile->GetRequiredDefinition("CMAKE_C_FLAGS_RELEASE"); flagsMinSize += m_Makefile->GetRequiredDefinition("CMAKE_C_FLAGS_MINSIZEREL"); flagsDebug += m_Makefile->GetRequiredDefinition("CMAKE_C_FLAGS_DEBUG"); flagsDebugRel += m_Makefile->GetRequiredDefinition("CMAKE_C_FLAGS_RELWITHDEBINFO"); } std::string programDatabase; const char* pre = "WIN32,_DEBUG,_WINDOWS"; std::string debugPostfix = ""; bool debug = !strcmp(configName,"Debug"); if (debug && m_Makefile->GetDefinition("CMAKE_DEBUG_POSTFIX")) { debugPostfix = m_Makefile->GetDefinition("CMAKE_DEBUG_POSTFIX"); } // fill the flagMap for Debug, Release, MinSizeRel, and RelWithDebInfo // also set the flags, and pre-defined macros if(strcmp(configName, "Debug") == 0) { flagMap["InlineFunctionExpansion"] = "0"; flagMap["Optimization"] = "0"; flagMap["RuntimeLibrary"] = "3"; flags += flagsDebug; pre = "WIN32,_DEBUG,_WINDOWS"; std::string libpath = m_LibraryOutputPath + "$(OutDir)/" + libName + debugPostfix + ".pdb"; programDatabase = "\t\t\t\tProgramDatabaseFileName=\""; programDatabase += libpath; programDatabase += "\""; } else if (strcmp(configName, "Release") == 0) { flagMap["InlineFunctionExpansion"] = "1"; flagMap["Optimization"] = "2"; flagMap["RuntimeLibrary"] = "2"; flags += flagsRelease; pre = "WIN32,_WINDOWS"; flags += flagsRelease; } else if(strcmp(configName, "MinSizeRel") == 0) { flagMap["InlineFunctionExpansion"] = "1"; flagMap["Optimization"] = "1"; flagMap["RuntimeLibrary"] = "2"; pre = "WIN32,_WINDOWS"; flags += flagsMinSize; } else if(strcmp(configName, "RelWithDebInfo") == 0) { flagMap["InlineFunctionExpansion"] = "1"; flagMap["Optimization"] = "2"; flagMap["RuntimeLibrary"] = "2"; pre = "WIN32,_WINDOWS"; flags += flagsDebugRel; std::string libpath = m_LibraryOutputPath + "$(OutDir)/" + libName + debugPostfix + ".pdb"; programDatabase = "\t\t\t\tProgramDatabaseFileName=\""; programDatabase += libpath; programDatabase += "\""; } fout << "\t\t\tIntermediateDirectory=\".\\" << configName << "\"\n" << "\t\t\tConfigurationType=\"" << configType << "\"\n" << "\t\t\tUseOfMFC=\"" << mfcFlag << "\"\n" << "\t\t\tATLMinimizesCRunTimeLibraryUsage=\"FALSE\"\n"; // if -D_UNICODE or /D_UNICODE is found in the flags // change the character set to unicode, if not then // default to MBCS std::string defs = m_Makefile->GetDefineFlags(); if(flags.find("D_UNICODE") != flags.npos || defs.find("D_UNICODE") != flags.npos) { fout << "\t\t\tCharacterSet=\"1\">\n"; } else { fout << "\t\t\tCharacterSet=\"2\">\n"; } fout << "\t\t\tFillFlagMapFromCommandFlags(flagMap, &cmLocalVisualStudio7GeneratorFlagTable[0], flags); // output remaining flags that were not mapped to anything fout << this->EscapeForXML(flags.c_str()).c_str(); fout << " -DCMAKE_INTDIR=\\"" << configName << "\\"" << "\"\n"; fout << "\t\t\t\tAdditionalIncludeDirectories=\""; std::vector& includes = m_Makefile->GetIncludeDirectories(); std::vector::iterator i = includes.begin(); for(;i != includes.end(); ++i) { std::string ipath = this->ConvertToXMLOutputPath(i->c_str()); fout << ipath << ";"; } fout << "\"\n"; // set a few cmake specific flags if(m_Makefile->IsOn("CMAKE_CXX_USE_RTTI")) { flagMap["RuntimeTypeInfo"] = "TRUE"; } if ( m_Makefile->GetDefinition("CMAKE_CXX_WARNING_LEVEL") ) { flagMap["WarningLevel"] = m_Makefile->GetDefinition("CMAKE_CXX_WARNING_LEVEL"); } // Now copy the flag map into the xml for the file for(std::map::iterator m = flagMap.begin(); m != flagMap.end(); ++m) { fout << "\t\t\t\t" << m->first << "=\"" << m->second << "\"\n"; } fout << "\t\t\t\tPreprocessorDefinitions=\"" << pre; if(target.GetType() == cmTarget::SHARED_LIBRARY || target.GetType() == cmTarget::MODULE_LIBRARY) { std::string exportSymbol; if (const char* custom_export_name = target.GetProperty("DEFINE_SYMBOL")) { exportSymbol = custom_export_name; } else { std::string id = libName; id += "_EXPORTS"; exportSymbol = cmSystemTools::MakeCindentifier(id.c_str()); } fout << "," << exportSymbol; } this->OutputDefineFlags(fout); fout << "\"\n"; fout << "\t\t\t\tAssemblerListingLocation=\"" << configName << "\"\n"; fout << "\t\t\t\tObjectFile=\"" << configName << "\\\"\n"; if(m_Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE")) { fout << "\t\t\t\tSuppressStartupBanner=\"FALSE\"\n"; } if(programDatabase.size()) { fout << programDatabase << "\n"; } fout << "/>\n"; // end of \n"; fout << "\t\t\tConvertToXMLOutputPath(i->c_str()); fout << ipath << ";"; } fout << "\"\n" << "\t\t\t\tPreprocessorDefinitions=\"" << pre; this->OutputDefineFlags(fout); fout << "\" />\n"; fout << "\t\t\t\n"; this->OutputTargetRules(fout, target, libName); this->OutputBuildTool(fout, configName, libName, target); fout << "\t\t\n"; } void cmLocalVisualStudio7Generator::FillFlagMapFromCommandFlags( std::map& flagMap, cmVS7FlagTable* flagTable, std::string& flags) { std::string replace; while(flagTable->IDEName) { if(flags.find(flagTable->commandFlag) != flags.npos) { // replace -flag replace = "-"; replace += flagTable->commandFlag; cmSystemTools::ReplaceString(flags, replace.c_str(), ""); // now replace /flag replace[0] = '/'; cmSystemTools::ReplaceString(flags, replace.c_str(), ""); // now put value into flag map flagMap[flagTable->IDEName] = flagTable->value; } flagTable++; } } void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout, const char* configName, const char *libName, const cmTarget &target) { std::string temp; std::string debugPostfix = ""; bool debug = !strcmp(configName,"Debug"); if (debug && m_Makefile->GetDefinition("CMAKE_DEBUG_POSTFIX")) { debugPostfix = m_Makefile->GetDefinition("CMAKE_DEBUG_POSTFIX"); } std::string extraLinkOptions; if(target.GetType() == cmTarget::EXECUTABLE) { extraLinkOptions = m_Makefile->GetRequiredDefinition("CMAKE_EXE_LINKER_FLAGS"); } if(target.GetType() == cmTarget::SHARED_LIBRARY) { extraLinkOptions = m_Makefile->GetRequiredDefinition("CMAKE_SHARED_LINKER_FLAGS"); } if(target.GetType() == cmTarget::MODULE_LIBRARY) { extraLinkOptions = m_Makefile->GetRequiredDefinition("CMAKE_MODULE_LINKER_FLAGS"); } const char* targetLinkFlags = target.GetProperty("LINK_FLAGS"); if(targetLinkFlags) { extraLinkOptions += " "; extraLinkOptions += targetLinkFlags; } switch(target.GetType()) { case cmTarget::STATIC_LIBRARY: { std::string libpath = m_LibraryOutputPath + "$(OutDir)/" + libName + debugPostfix + ".lib"; fout << "\t\t\tConvertToXMLOutputPathSingle(libpath.c_str()) << ".\"/>\n"; break; } case cmTarget::SHARED_LIBRARY: case cmTarget::MODULE_LIBRARY: fout << "\t\t\tOutputLibraries(fout, configName, libName, target); fout << "\"\n"; temp = m_LibraryOutputPath; temp += configName; temp += "/"; temp += libName; temp += debugPostfix; temp += ".dll"; fout << "\t\t\t\tOutputFile=\"" << this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n"; fout << "\t\t\t\tLinkIncremental=\"1\"\n"; if(m_Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE")) { fout << "\t\t\t\tSuppressStartupBanner=\"FALSE\"\n"; } else { fout << "\t\t\t\tSuppressStartupBanner=\"TRUE\"\n"; } fout << "\t\t\t\tAdditionalLibraryDirectories=\""; this->OutputLibraryDirectories(fout, configName, libName, target); fout << "\"\n"; this->OutputModuleDefinitionFile(fout, target); temp = m_LibraryOutputPath; temp += "$(OutDir)/"; temp += libName; temp += debugPostfix; temp += ".pdb"; fout << "\t\t\t\tProgramDatabaseFile=\"" << this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n"; if(strcmp(configName, "Debug") == 0 || strcmp(configName, "RelWithDebInfo") == 0) { fout << "\t\t\t\tGenerateDebugInformation=\"TRUE\"\n"; } if(target.HasCxx()) { fout << "\t\t\t\tStackReserveSize=\"" << m_Makefile->GetRequiredDefinition("CMAKE_CXX_STACK_SIZE") << "\"\n"; } temp = m_LibraryOutputPath; temp += configName; temp += "/"; temp += libName; temp += debugPostfix; temp += ".lib"; fout << "\t\t\t\tImportLibrary=\"" << this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"/>\n"; break; case cmTarget::EXECUTABLE: fout << "\t\t\tGetRequiredDefinition("CMAKE_STANDARD_LIBRARIES") << " "; this->OutputLibraries(fout, configName, libName, target); fout << "\"\n"; temp = m_ExecutableOutputPath; temp += configName; temp += "/"; temp += libName; temp += ".exe"; fout << "\t\t\t\tOutputFile=\"" << this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n"; fout << "\t\t\t\tLinkIncremental=\"1\"\n"; if(m_Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE")) { fout << "\t\t\t\tSuppressStartupBanner=\"FALSE\"\n"; } else { fout << "\t\t\t\tSuppressStartupBanner=\"TRUE\"\n"; } fout << "\t\t\t\tAdditionalLibraryDirectories=\""; this->OutputLibraryDirectories(fout, configName, libName, target); fout << "\"\n"; fout << "\t\t\t\tProgramDatabaseFile=\"" << m_LibraryOutputPath << "$(OutDir)\\" << libName << ".pdb\"\n"; if(strcmp(configName, "Debug") == 0 || strcmp(configName, "RelWithDebInfo") == 0) { fout << "\t\t\t\tGenerateDebugInformation=\"TRUE\"\n"; } if ( target.GetPropertyAsBool("WIN32_EXECUTABLE") ) { fout << "\t\t\t\tSubSystem=\"2\"\n"; } else { fout << "\t\t\t\tSubSystem=\"1\"\n"; } if(target.HasCxx()) { fout << "\t\t\t\tStackReserveSize=\"" << m_Makefile->GetRequiredDefinition("CMAKE_CXX_STACK_SIZE") << "\""; } fout << "/>\n"; break; case cmTarget::UTILITY: break; } } void cmLocalVisualStudio7Generator::OutputModuleDefinitionFile(std::ostream& fout, const cmTarget &target) { std::vector const& classes = target.GetSourceFiles(); for(std::vector::const_iterator i = classes.begin(); i != classes.end(); i++) { if(cmSystemTools::UpperCase((*i)->GetSourceExtension()) == "DEF") { fout << "\t\t\t\tModuleDefinitionFile=\"" << this->ConvertToXMLOutputPath((*i)->GetFullPath().c_str()) << "\"\n"; return; } } } void cmLocalVisualStudio7Generator::OutputLibraryDirectories(std::ostream& fout, const char*, const char*, const cmTarget &tgt) { bool hasone = false; if(m_LibraryOutputPath.size()) { hasone = true; std::string temp = m_LibraryOutputPath; temp += "$(INTDIR)"; fout << this->ConvertToXMLOutputPath(temp.c_str()) << "," << this->ConvertToXMLOutputPath(m_LibraryOutputPath.c_str()); } if(m_ExecutableOutputPath.size() && (m_LibraryOutputPath != m_ExecutableOutputPath)) { if (hasone) { fout << ","; } hasone = true; std::string temp = m_ExecutableOutputPath; temp += "$(INTDIR)"; fout << this->ConvertToXMLOutputPath(temp.c_str()) << "," << this->ConvertToXMLOutputPath(m_ExecutableOutputPath.c_str()); } std::set pathEmitted; std::vector::const_iterator i; const std::vector& libdirs = tgt.GetLinkDirectories(); for(i = libdirs.begin(); i != libdirs.end(); ++i) { std::string lpath = *i; if(lpath[lpath.size()-1] != '/') { lpath += "/"; } if(pathEmitted.insert(lpath).second) { if(hasone) { fout << ","; } std::string lpathi = lpath + "$(INTDIR)"; fout << this->ConvertToXMLOutputPath(lpathi.c_str()) << "," << this->ConvertToXMLOutputPath(lpath.c_str()); hasone = true; } } } void cmLocalVisualStudio7Generator::OutputLibraries(std::ostream& fout, const char* configName, const char* libName, const cmTarget &target) { const cmTarget::LinkLibraries& libs = target.GetLinkLibraries(); cmTarget::LinkLibraries::const_iterator j; for(j = libs.begin(); j != libs.end(); ++j) { if(j->first != libName) { std::string lib = j->first; std::string debugPostfix = ""; // if this is a library we are building then watch for a debugPostfix if (!strcmp(configName,"Debug")) { std::string libPath = j->first + "_CMAKE_PATH"; const char* cacheValue = m_GlobalGenerator->GetCMakeInstance()->GetCacheDefinition(libPath.c_str()); if(cacheValue && *cacheValue && m_Makefile->GetDefinition("CMAKE_DEBUG_POSTFIX")) { debugPostfix = m_Makefile->GetDefinition("CMAKE_DEBUG_POSTFIX"); } } if(j->first.find(".lib") == std::string::npos) { lib += debugPostfix + ".lib"; } lib = this->ConvertToXMLOutputPath(lib.c_str()); if (j->second == cmTarget::GENERAL || (j->second == cmTarget::DEBUG && strcmp(configName, "Debug") == 0) || (j->second == cmTarget::OPTIMIZED && strcmp(configName, "Debug") != 0)) { fout << lib << " "; } } } } void cmLocalVisualStudio7Generator::OutputDefineFlags(std::ostream& fout) { std::string defs = m_Makefile->GetDefineFlags(); cmSystemTools::ReplaceString(defs, "/D","-D"); std::string::size_type pos = defs.find("-D"); bool done = pos == std::string::npos; if(!done) { fout << ","; } while(!done) { std::string::size_type nextpos = defs.find("-D", pos+2); std::string define; if(nextpos != std::string::npos) { define = defs.substr(pos+2, nextpos - pos -3); } else { define = defs.substr(pos+2); done = true; } cmSystemTools::ReplaceString(define, "\"", """); fout << define << ","; if(!done) { pos = defs.find("-D", nextpos); } } } void cmLocalVisualStudio7Generator::WriteVCProjFile(std::ostream& fout, const char *libName, cmTarget &target) { // get the configurations std::vector *configs = static_cast (m_GlobalGenerator)->GetConfigurations(); // if we should add regen rule then... const char *suppRegenRule = m_Makefile->GetDefinition("CMAKE_SUPPRESS_REGENERATION"); if (!cmSystemTools::IsOn(suppRegenRule)) { this->AddVCProjBuildRule(); } // trace the visual studio dependencies std::string name = libName; name += ".vcproj.cmake"; target.TraceVSDependencies(name, m_Makefile); // We may be modifying the source groups temporarily, so make a copy. std::vector sourceGroups = m_Makefile->GetSourceGroups(); // get the classes from the source lists then add them to the groups std::vector & classes = target.GetSourceFiles(); for(std::vector::const_iterator i = classes.begin(); i != classes.end(); i++) { // Add the file to the list of sources. std::string source = (*i)->GetFullPath(); if(cmSystemTools::UpperCase((*i)->GetSourceExtension()) == "DEF") { m_ModuleDefinitionFile = (*i)->GetFullPath(); } cmSourceGroup& sourceGroup = m_Makefile->FindSourceGroup(source.c_str(), sourceGroups); sourceGroup.AssignSource(*i); } // open the project this->WriteProjectStart(fout, libName, target, sourceGroups); // write the configuration information this->WriteConfigurations(fout, libName, target); fout << "\t\n"; // Loop through every source group. for(std::vector::const_iterator sg = sourceGroups.begin(); sg != sourceGroups.end(); ++sg) { const std::vector &sourceFiles = sg->GetSourceFiles(); // If the group is empty, don't write it at all. if(sourceFiles.empty()) { continue; } // If the group has a name, write the header. std::string name = sg->GetName(); if(name != "") { this->WriteVCProjBeginGroup(fout, name.c_str(), ""); } // Loop through each source in the source group. for(std::vector::const_iterator sf = sourceFiles.begin(); sf != sourceFiles.end(); ++sf) { std::string source = (*sf)->GetFullPath(); const cmCustomCommand *command = (*sf)->GetCustomCommand(); std::string compileFlags; std::string additionalDeps; // Check for extra compiler flags. const char* cflags = (*sf)->GetProperty("COMPILE_FLAGS"); if(cflags) { compileFlags = cflags; } if(cmSystemTools::GetFileFormat((*sf)->GetSourceExtension().c_str()) == cmSystemTools::CXX_FILE_FORMAT) { // force a C++ file type compileFlags += " /TP "; } // Check for extra object-file dependencies. const char* deps = (*sf)->GetProperty("OBJECT_DEPENDS"); if(deps) { std::vector depends; cmSystemTools::ExpandListArgument(deps, depends); if(!depends.empty()) { std::vector::iterator i = depends.begin(); additionalDeps = this->ConvertToXMLOutputPath(i->c_str()); for(++i;i != depends.end(); ++i) { additionalDeps += ";"; additionalDeps += this->ConvertToXMLOutputPath(i->c_str()); } } } if (source != libName || target.GetType() == cmTarget::UTILITY) { fout << "\t\t\tConvertToXMLOutputPathSingle(source.c_str()); // Tell MS-Dev what the source is. If the compiler knows how to // build it, then it will. fout << "\t\t\t\tRelativePath=\"" << d << "\">\n"; if (command) { std::string totalCommandStr; totalCommandStr = this->ConvertToRelativeOutputPath(command->GetCommand().c_str()); totalCommandStr += " "; totalCommandStr += command->GetArguments(); totalCommandStr += "\n"; const char* comment = command->GetComment().c_str(); const char* flags = compileFlags.size() ? compileFlags.c_str(): 0; this->WriteCustomRule(fout, source.c_str(), totalCommandStr.c_str(), (*comment?comment:"Custom Rule"), command->GetDepends(), command->GetOutput().c_str(), flags); } else if(compileFlags.size() || additionalDeps.length()) { const char* aCompilerTool = "VCCLCompilerTool"; if((*sf)->GetSourceExtension() == "idl") { aCompilerTool = "VCMIDLTool"; } for(std::vector::iterator i = configs->begin(); i != configs->end(); ++i) { fout << "\t\t\t\t\n" << "\t\t\t\t\tEscapeForXML(compileFlags.c_str()) << "\"\n"; } if(additionalDeps.length()) { fout << "\t\t\t\t\tAdditionalDependencies=\"" << additionalDeps.c_str() << "\"\n"; } fout << "\t\t\t\t\t/>\n" << "\t\t\t\t\n"; } } fout << "\t\t\t\n"; } } // If the group has a name, write the footer. if(name != "") { this->WriteVCProjEndGroup(fout); } } fout << "\t\n"; // Write the VCProj file's footer. this->WriteVCProjFooter(fout); } void cmLocalVisualStudio7Generator:: WriteCustomRule(std::ostream& fout, const char* source, const char* command, const char* comment, const std::vector& depends, const char *output, const char* compileFlags) { std::string cmd = command; cmSystemTools::ReplaceString(cmd, "\"", """); std::vector::iterator i; std::vector *configs = static_cast(m_GlobalGenerator)->GetConfigurations(); for(i = configs->begin(); i != configs->end(); ++i) { fout << "\t\t\t\t\n"; if(compileFlags) { fout << "\t\t\t\t\tEscapeForXML(compileFlags) << "\"/>\n"; } fout << "\t\t\t\t\t::const_iterator d = depends.begin(); d != depends.end(); ++d) { std::string dep = cmSystemTools::GetFilenameName(*d); if (cmSystemTools::GetFilenameLastExtension(dep) == ".exe") { dep = cmSystemTools::GetFilenameWithoutLastExtension(dep); } // check to see if the dependency is another target built by cmake std::string libPath = dep + "_CMAKE_PATH"; const char* cacheValue = m_Makefile->GetDefinition(libPath.c_str()); if (cacheValue && *cacheValue) { std::string exePath = ""; if (m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH")) { exePath = m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH"); } if(exePath.size()) { libPath = exePath; } else { libPath = cacheValue; } libPath += "/"; libPath += "$(INTDIR)/"; libPath += dep; libPath += ".exe"; fout << this->ConvertToXMLOutputPath(libPath.c_str()) << ";"; } else { fout << this->ConvertToXMLOutputPath(d->c_str()) << ";"; } } fout << "\"\n"; fout << "\t\t\t\t\tOutputs=\""; if(output == 0) { fout << source << "_force"; } // Write a rule for the output generated by this command. fout << this->ConvertToXMLOutputPathSingle(output); fout << "\"/>\n"; fout << "\t\t\t\t\n"; } } void cmLocalVisualStudio7Generator::WriteVCProjBeginGroup(std::ostream& fout, const char* group, const char* ) { fout << "\t\t\n"; } void cmLocalVisualStudio7Generator::WriteVCProjEndGroup(std::ostream& fout) { fout << "\t\t\n"; } // look for custom rules on a target and collect them together void cmLocalVisualStudio7Generator::OutputTargetRules(std::ostream& fout, const cmTarget &target, const char * /* libName */) { if (target.GetType() > cmTarget::UTILITY) { return; } // add the pre build rules fout << "\t\t\t::const_iterator cr = target.GetPreBuildCommands().begin(); cr != target.GetPreBuildCommands().end(); ++cr) { cmCustomCommand cc(*cr); cc.ExpandVariables(*m_Makefile); if(!init) { fout << "\nCommandLine=\""; init = true; } std::string args = cc.GetArguments(); cmSystemTools::ReplaceString(args, "\"", """); fout << this->ConvertToXMLOutputPath(cc.GetCommand().c_str()) << " " << args << "\n"; } if (init) { fout << "\""; } fout << "/>\n"; // add the pre Link rules fout << "\t\t\t::const_iterator cr = target.GetPreLinkCommands().begin(); cr != target.GetPreLinkCommands().end(); ++cr) { cmCustomCommand cc(*cr); cc.ExpandVariables(*m_Makefile); if(!init) { fout << "\nCommandLine=\""; init = true; } std::string args = cc.GetArguments(); cmSystemTools::ReplaceString(args, "\"", """); fout << this->ConvertToXMLOutputPath(cc.GetCommand().c_str()) << " " << args << "\n"; } if (init) { fout << "\""; } fout << "/>\n"; // add the PostBuild rules fout << "\t\t\t::const_iterator cr = target.GetPostBuildCommands().begin(); cr != target.GetPostBuildCommands().end(); ++cr) { cmCustomCommand cc(*cr); cc.ExpandVariables(*m_Makefile); if(!init) { fout << "\nCommandLine=\""; init = true; } std::string args = cc.GetArguments(); cmSystemTools::ReplaceString(args, "\"", """); fout << this->ConvertToXMLOutputPath(cc.GetCommand().c_str()) << " " << args << "\n"; } if (init) { fout << "\""; } fout << "/>\n"; } void cmLocalVisualStudio7Generator::WriteProjectStart(std::ostream& fout, const char *libName, const cmTarget &, std::vector &) { fout << "\n" << "\n" << "\t\n" << "\t\t\n" << "\t\n"; } void cmLocalVisualStudio7Generator::WriteVCProjFooter(std::ostream& fout) { fout << "\t\n" << "\t\n" << "\n"; } std::string cmLocalVisualStudio7Generator::EscapeForXML(const char* s) { std::string ret = s; cmSystemTools::ReplaceString(ret, "&", "&"); cmSystemTools::ReplaceString(ret, "\"", """); cmSystemTools::ReplaceString(ret, "<", "<"); cmSystemTools::ReplaceString(ret, ">", ">"); return ret; } std::string cmLocalVisualStudio7Generator::ConvertToXMLOutputPath(const char* path) { std::string ret = this->ConvertToRelativeOutputPath(path); cmSystemTools::ReplaceString(ret, "&", "&"); cmSystemTools::ReplaceString(ret, "\"", """); cmSystemTools::ReplaceString(ret, "<", "<"); cmSystemTools::ReplaceString(ret, ">", ">"); return ret; } std::string cmLocalVisualStudio7Generator::ConvertToXMLOutputPathSingle(const char* path) { std::string ret = this->ConvertToRelativeOutputPath(path); cmSystemTools::ReplaceString(ret, "\"", ""); cmSystemTools::ReplaceString(ret, "&", "&"); cmSystemTools::ReplaceString(ret, "<", "<"); cmSystemTools::ReplaceString(ret, ">", ">"); return ret; } void cmLocalVisualStudio7Generator::ConfigureFinalPass() { cmLocalGenerator::ConfigureFinalPass(); cmTargets &tgts = m_Makefile->GetTargets(); cmGlobalVisualStudio7Generator* gg = static_cast(m_GlobalGenerator); for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); l++) { if (strncmp(l->first.c_str(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0) { cmCustomCommand cc = l->second.GetPostBuildCommands()[0]; std::vector stuff = cc.GetDepends(); gg->CreateGUID(stuff[0].c_str()); } else { gg->CreateGUID(l->first.c_str()); } } }