2002-09-04 23:23:56 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-09-04 23:23:56 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2002-09-04 23:23:56 +04:00
|
|
|
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"
|
2002-12-17 18:04:39 +03:00
|
|
|
#include "cmake.h"
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2006-05-23 23:27:41 +04:00
|
|
|
#include <ctype.h> // for isspace
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
cmLocalVisualStudio7Generator::cmLocalVisualStudio7Generator()
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Version = 7;
|
2006-03-30 22:49:56 +04:00
|
|
|
this->PlatformName = "Win32";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmLocalVisualStudio7Generator::~cmLocalVisualStudio7Generator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
void cmLocalVisualStudio7Generator::Generate()
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2004-10-21 22:34:02 +04:00
|
|
|
std::set<cmStdString> lang;
|
|
|
|
lang.insert("C");
|
|
|
|
lang.insert("CXX");
|
2005-03-22 15:26:45 +03:00
|
|
|
lang.insert("RC");
|
|
|
|
lang.insert("IDL");
|
|
|
|
lang.insert("DEF");
|
2004-10-21 22:34:02 +04:00
|
|
|
this->CreateCustomTargetsAndCommands(lang);
|
2006-09-29 00:40:35 +04:00
|
|
|
this->FixGlobalTargets();
|
2002-09-04 23:23:56 +04:00
|
|
|
this->OutputVCProjFile();
|
|
|
|
}
|
|
|
|
|
2006-09-29 00:40:35 +04:00
|
|
|
void cmLocalVisualStudio7Generator::FixGlobalTargets()
|
2006-08-26 06:56:41 +04:00
|
|
|
{
|
|
|
|
// Visual Studio .NET 2003 Service Pack 1 will not run post-build
|
|
|
|
// commands for targets in which no sources are built. Add dummy
|
|
|
|
// rules to force these targets to build.
|
|
|
|
cmTargets &tgts = this->Makefile->GetTargets();
|
|
|
|
for(cmTargets::iterator l = tgts.begin();
|
|
|
|
l != tgts.end(); l++)
|
|
|
|
{
|
|
|
|
cmTarget& tgt = l->second;
|
2006-09-29 00:40:35 +04:00
|
|
|
if(tgt.GetType() == cmTarget::GLOBAL_TARGET)
|
2006-08-26 06:56:41 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> no_depends;
|
|
|
|
cmCustomCommandLine force_command;
|
|
|
|
force_command.push_back(";");
|
|
|
|
cmCustomCommandLines force_commands;
|
|
|
|
force_commands.push_back(force_command);
|
|
|
|
const char* no_main_dependency = 0;
|
|
|
|
std::string force = this->Makefile->GetStartOutputDirectory();
|
|
|
|
force += cmake::GetCMakeFilesDirectory();
|
|
|
|
force += "/";
|
|
|
|
force += tgt.GetName();
|
|
|
|
force += "_force";
|
|
|
|
this->Makefile->AddCustomCommandToOutput(force.c_str(), no_depends,
|
|
|
|
no_main_dependency,
|
|
|
|
force_commands, " ", 0, true);
|
|
|
|
if(cmSourceFile* file =
|
|
|
|
this->Makefile->GetSourceFileWithOutput(force.c_str()))
|
|
|
|
{
|
|
|
|
tgt.GetSourceFiles().push_back(file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// TODO
|
|
|
|
// for CommandLine= need to repleace quotes with "
|
|
|
|
// write out configurations
|
|
|
|
void cmLocalVisualStudio7Generator::OutputVCProjFile()
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
2002-09-04 23:23:56 +04:00
|
|
|
// If not an in source build, then create the output directory
|
2006-03-15 19:02:08 +03:00
|
|
|
if(strcmp(this->Makefile->GetStartOutputDirectory(),
|
|
|
|
this->Makefile->GetHomeDirectory()) != 0)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-05-12 19:56:09 +04:00
|
|
|
if(!cmSystemTools::MakeDirectory
|
|
|
|
(this->Makefile->GetStartOutputDirectory()))
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
cmSystemTools::Error("Error creating directory ",
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetStartOutputDirectory());
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
this->LibraryOutputPath = "";
|
|
|
|
if (this->Makefile->GetDefinition("LIBRARY_OUTPUT_PATH"))
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->LibraryOutputPath =
|
|
|
|
this->Makefile->GetDefinition("LIBRARY_OUTPUT_PATH");
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->LibraryOutputPath.size())
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
// make sure there is a trailing slash
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->LibraryOutputPath[this->LibraryOutputPath.size()-1] != '/')
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->LibraryOutputPath += "/";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ExecutableOutputPath = "";
|
|
|
|
if (this->Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH"))
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-05-12 19:56:09 +04:00
|
|
|
this->ExecutableOutputPath =
|
|
|
|
this->Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH");
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->ExecutableOutputPath.size())
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
// make sure there is a trailing slash
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->ExecutableOutputPath[this->ExecutableOutputPath.size()-1] != '/')
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ExecutableOutputPath += "/";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// Create the VCProj or set of VCProj's for libraries and executables
|
|
|
|
|
|
|
|
// clear project names
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CreatedProjectNames.clear();
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2006-01-09 22:40:31 +03:00
|
|
|
// Call TraceVSDependencies on all targets
|
2006-03-15 19:02:08 +03:00
|
|
|
cmTargets &tgts = this->Makefile->GetTargets();
|
2006-03-10 21:06:26 +03:00
|
|
|
for(cmTargets::iterator l = tgts.begin();
|
2006-01-09 22:40:31 +03:00
|
|
|
l != tgts.end(); l++)
|
|
|
|
{
|
2006-02-10 02:42:58 +03:00
|
|
|
// Add a rule to regenerate the build system when the target
|
|
|
|
// specification source changes.
|
|
|
|
const char* suppRegenRule =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetDefinition("CMAKE_SUPPRESS_REGENERATION");
|
2006-02-10 02:42:58 +03:00
|
|
|
if (!cmSystemTools::IsOn(suppRegenRule) &&
|
|
|
|
(strcmp(l->first.c_str(), CMAKE_CHECK_BUILD_SYSTEM_TARGET) != 0))
|
|
|
|
{
|
|
|
|
this->AddVCProjBuildRule(l->second);
|
|
|
|
}
|
|
|
|
|
2006-01-09 22:40:31 +03:00
|
|
|
// 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))
|
|
|
|
{
|
|
|
|
cmTarget& target = l->second;
|
2006-03-15 19:02:08 +03:00
|
|
|
target.TraceVSDependencies(target.GetName(), this->Makefile);
|
2006-01-09 22:40:31 +03:00
|
|
|
}
|
|
|
|
}
|
2006-03-23 21:55:09 +03:00
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
for(cmTargets::iterator l = tgts.begin();
|
2002-09-04 23:23:56 +04:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-12 19:56:09 +04:00
|
|
|
void cmLocalVisualStudio7Generator
|
|
|
|
::CreateSingleVCProj(const char *lname, cmTarget &target)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
// add to the list of projects
|
|
|
|
std::string pname = lname;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CreatedProjectNames.push_back(pname);
|
2002-09-04 23:23:56 +04:00
|
|
|
// create the dsp.cmake file
|
|
|
|
std::string fname;
|
2006-03-15 19:02:08 +03:00
|
|
|
fname = this->Makefile->GetStartOutputDirectory();
|
2002-09-04 23:23:56 +04:00
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-10 02:42:58 +03:00
|
|
|
void cmLocalVisualStudio7Generator::AddVCProjBuildRule(cmTarget& tgt)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-02-10 02:42:58 +03:00
|
|
|
std::string dspname = tgt.GetName();
|
2002-09-04 23:23:56 +04:00
|
|
|
dspname += ".vcproj.cmake";
|
2006-05-12 19:56:09 +04:00
|
|
|
const char* dsprule =
|
|
|
|
this->Makefile->GetRequiredDefinition("CMAKE_COMMAND");
|
2005-02-22 18:32:44 +03:00
|
|
|
cmCustomCommandLine commandLine;
|
|
|
|
commandLine.push_back(dsprule);
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string makefileIn = this->Makefile->GetStartDirectory();
|
2003-06-03 18:30:23 +04:00
|
|
|
makefileIn += "/";
|
|
|
|
makefileIn += "CMakeLists.txt";
|
2006-07-24 19:27:07 +04:00
|
|
|
makefileIn = cmSystemTools::CollapseFullPath(makefileIn.c_str());
|
2006-04-11 19:06:19 +04:00
|
|
|
std::string comment = "Building Custom Rule ";
|
|
|
|
comment += makefileIn;
|
2003-06-03 18:30:23 +04:00
|
|
|
std::string args;
|
|
|
|
args = "-H";
|
2006-05-12 19:56:09 +04:00
|
|
|
args += this->Convert(this->Makefile->GetHomeDirectory(),
|
2006-09-21 23:14:06 +04:00
|
|
|
START_OUTPUT, UNCHANGED, true);
|
2005-02-22 18:32:44 +03:00
|
|
|
commandLine.push_back(args);
|
2003-06-03 18:30:23 +04:00
|
|
|
args = "-B";
|
2006-03-10 21:06:26 +03:00
|
|
|
args +=
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Convert(this->Makefile->GetHomeOutputDirectory(),
|
2006-09-21 23:14:06 +04:00
|
|
|
START_OUTPUT, UNCHANGED, true);
|
2005-02-22 18:32:44 +03:00
|
|
|
commandLine.push_back(args);
|
2006-03-10 21:06:26 +03:00
|
|
|
|
|
|
|
std::string configFile =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetRequiredDefinition("CMAKE_ROOT");
|
2002-09-04 23:23:56 +04:00
|
|
|
configFile += "/Templates/CMakeWindowsSystemConfig.cmake";
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<std::string> listFiles = this->Makefile->GetListFiles();
|
2002-09-04 23:23:56 +04:00
|
|
|
bool found = false;
|
|
|
|
for(std::vector<std::string>::iterator i = listFiles.begin();
|
|
|
|
i != listFiles.end(); ++i)
|
|
|
|
{
|
|
|
|
if(*i == configFile)
|
|
|
|
{
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!found)
|
|
|
|
{
|
|
|
|
listFiles.push_back(configFile);
|
|
|
|
}
|
2005-02-22 18:32:44 +03:00
|
|
|
|
|
|
|
cmCustomCommandLines commandLines;
|
|
|
|
commandLines.push_back(commandLine);
|
2006-02-08 18:58:36 +03:00
|
|
|
const char* no_working_directory = 0;
|
2006-04-11 19:06:19 +04:00
|
|
|
this->Makefile->AddCustomCommandToOutput(dspname.c_str(), listFiles,
|
|
|
|
makefileIn.c_str(), commandLines,
|
|
|
|
comment.c_str(),
|
|
|
|
no_working_directory, true);
|
2006-03-15 19:02:08 +03:00
|
|
|
if(cmSourceFile* file = this->Makefile->GetSource(makefileIn.c_str()))
|
2006-02-15 00:32:20 +03:00
|
|
|
{
|
|
|
|
tgt.GetSourceFiles().push_back(file);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Error adding rule for ", makefileIn.c_str());
|
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteConfigurations(std::ostream& fout,
|
2002-09-04 23:23:56 +04:00
|
|
|
const char *libName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget &target)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
std::vector<std::string> *configs =
|
2006-05-12 19:56:09 +04:00
|
|
|
static_cast<cmGlobalVisualStudio7Generator *>
|
|
|
|
(this->GlobalGenerator)->GetConfigurations();
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "\t<Configurations>\n";
|
|
|
|
for( std::vector<std::string>::iterator i = configs->begin();
|
|
|
|
i != configs->end(); ++i)
|
|
|
|
{
|
|
|
|
this->WriteConfiguration(fout, i->c_str(), libName, target);
|
|
|
|
}
|
|
|
|
fout << "\t</Configurations>\n";
|
|
|
|
}
|
|
|
|
|
2004-07-15 00:10:18 +04:00
|
|
|
// 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
|
|
|
|
};
|
|
|
|
|
2006-05-12 19:56:09 +04:00
|
|
|
// fill the table here currently the comment field is not used for
|
|
|
|
// anything other than documentation NOTE: Make sure the longer
|
|
|
|
// commandFlag comes FIRST!
|
2004-07-15 00:10:18 +04:00
|
|
|
cmVS7FlagTable cmLocalVisualStudio7GeneratorFlagTable[] =
|
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
// option flags (some flags map to the same option)
|
2006-05-12 19:56:09 +04:00
|
|
|
{"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"},
|
2004-07-15 22:38:50 +04:00
|
|
|
{"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"},
|
2006-05-04 21:35:56 +04:00
|
|
|
{"CompileAs", "TC", "Compile as c code", "1"},
|
|
|
|
{"CompileAs", "TP", "Compile as c++ code", "2"},
|
2004-07-15 00:10:18 +04:00
|
|
|
{"Optimization", "Od", "Non Debug", "0"},
|
|
|
|
{"Optimization", "O1", "Min Size", "1"},
|
|
|
|
{"Optimization", "O2", "Max Speed", "2"},
|
|
|
|
{"Optimization", "Ox", "Max Optimization", "3"},
|
2004-07-15 22:38:50 +04:00
|
|
|
{"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"},
|
2004-07-15 00:10:18 +04:00
|
|
|
{"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"},
|
2004-07-15 22:38:50 +04:00
|
|
|
{"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"},
|
2004-07-15 00:10:18 +04:00
|
|
|
{"WarningLevel", "W1", "Warning level", "1"},
|
|
|
|
{"WarningLevel", "W2", "Warning level", "2"},
|
|
|
|
{"WarningLevel", "W3", "Warning level", "3"},
|
|
|
|
{"WarningLevel", "W4", "Warning level", "4"},
|
2004-07-15 22:38:50 +04:00
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
// boolean flags
|
2004-07-15 00:10:18 +04:00
|
|
|
{"BufferSecurityCheck", "GS", "Buffer security check", "TRUE"},
|
2004-07-15 22:38:50 +04:00
|
|
|
{"EnableFibreSafeOptimization", "GT", "OmitFramePointers", "TRUE"},
|
2005-11-18 18:36:52 +03:00
|
|
|
{"EnableFunctionLevelLinking", "Gy", "EnableFunctionLevelLinking", "TRUE"},
|
2004-07-15 22:38:50 +04:00
|
|
|
{"EnableIntrinsicFunctions", "Oi", "EnableIntrinsicFunctions", "TRUE"},
|
|
|
|
{"ExceptionHandling", "EHsc", "enable c++ exceptions", "TRUE"},
|
2006-06-30 21:51:25 +04:00
|
|
|
{"ExceptionHandling", "EHa", "enable c++ exceptions", "2"},
|
2004-07-15 22:38:50 +04:00
|
|
|
{"ExceptionHandling", "GX", "enable c++ exceptions", "TRUE"},
|
|
|
|
{"GlobalOptimizations", "Og", "Global Optimize", "TRUE"},
|
2006-05-12 19:56:09 +04:00
|
|
|
{"ImproveFloatingPointConsistency", "Op",
|
|
|
|
"ImproveFloatingPointConsistency", "TRUE"},
|
2004-07-15 22:38:50 +04:00
|
|
|
{"MinimalRebuild", "Gm", "minimal rebuild", "TRUE"},
|
|
|
|
{"OmitFramePointers", "Oy", "OmitFramePointers", "TRUE"},
|
2004-07-15 00:10:18 +04:00
|
|
|
{"OptimizeForWindowsApplication", "GA", "Optimize for windows", "TRUE"},
|
2006-05-12 19:56:09 +04:00
|
|
|
{"RuntimeTypeInfo", "GR",
|
|
|
|
"Turn on Run time type information for c++", "TRUE"},
|
2004-07-15 22:38:50 +04:00
|
|
|
{"SmallerTypeCheck", "RTCc", "smaller type check", "TRUE"},
|
2005-11-18 18:36:52 +03:00
|
|
|
{"SuppressStartupBanner", "nologo", "SuppressStartupBanner", "TRUE"},
|
2004-07-15 22:38:50 +04:00
|
|
|
{"WarnAsError", "WX", "Treat warnings as errors", "TRUE"},
|
2004-07-15 00:10:18 +04:00
|
|
|
{0,0,0,0 }
|
|
|
|
};
|
|
|
|
|
2005-02-11 22:20:51 +03:00
|
|
|
|
|
|
|
cmVS7FlagTable cmLocalVisualStudio7GeneratorLinkFlagTable[] =
|
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
// option flags (some flags map to the same option)
|
2006-08-15 23:33:20 +04:00
|
|
|
{"GenerateManifest", "MANIFEST:NO", "disable manifest generation", "FALSE"},
|
|
|
|
{"GenerateManifest", "MANIFEST", "enable manifest generation", "TRUE"},
|
2005-02-11 22:20:51 +03:00
|
|
|
{"LinkIncremental", "INCREMENTAL:NO", "link incremental", "1"},
|
|
|
|
{"LinkIncremental", "INCREMENTAL:YES", "link incremental", "2"},
|
|
|
|
{0,0,0,0 }
|
|
|
|
};
|
|
|
|
|
2004-07-15 00:10:18 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cmLocalVisualStudio7Generator::WriteConfiguration(std::ostream& fout,
|
2005-07-13 19:21:30 +04:00
|
|
|
const char* configName,
|
|
|
|
const char *libName,
|
|
|
|
cmTarget &target)
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
2004-07-15 00:10:18 +04:00
|
|
|
// create a map of xml tags to the values they should have in the output
|
|
|
|
// for example, "BufferSecurityCheck" = "TRUE"
|
2005-02-10 07:25:09 +03:00
|
|
|
// 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
|
2004-07-15 00:10:18 +04:00
|
|
|
// and overwrite or add new values to this map
|
|
|
|
std::map<cmStdString, cmStdString> flagMap;
|
2005-02-10 07:25:09 +03:00
|
|
|
// since the default is on for this, but if /EHsc is found
|
|
|
|
// in the flags it will be turned on and we have /EHSC on by
|
|
|
|
// default in the CXX flags, then this is the only way to turn this off
|
|
|
|
flagMap["ExceptionHandling"] = "FALSE";
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* mfcFlag = this->Makefile->GetDefinition("CMAKE_MFC_FLAG");
|
2002-09-04 23:23:56 +04:00
|
|
|
if(!mfcFlag)
|
|
|
|
{
|
|
|
|
mfcFlag = "0";
|
|
|
|
}
|
|
|
|
fout << "\t\t<Configuration\n"
|
2006-03-30 22:49:56 +04:00
|
|
|
<< "\t\t\tName=\"" << configName << "|" << this->PlatformName << "\"\n"
|
2002-09-04 23:23:56 +04:00
|
|
|
<< "\t\t\tOutputDirectory=\"" << configName << "\"\n";
|
|
|
|
// This is an internal type to Visual Studio, it seems that:
|
|
|
|
// 4 == static library
|
|
|
|
// 2 == dll
|
|
|
|
// 1 == executable
|
2006-03-10 21:06:26 +03:00
|
|
|
// 10 == utility
|
2002-09-04 23:23:56 +04:00
|
|
|
const char* configType = "10";
|
|
|
|
switch(target.GetType())
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
2002-09-04 23:23:56 +04:00
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
configType = "4";
|
|
|
|
break;
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
|
|
|
configType = "2";
|
|
|
|
break;
|
2006-03-10 21:06:26 +03:00
|
|
|
case cmTarget::EXECUTABLE:
|
2002-09-04 23:23:56 +04:00
|
|
|
configType = "1";
|
2006-03-10 21:06:26 +03:00
|
|
|
break;
|
2002-09-04 23:23:56 +04:00
|
|
|
case cmTarget::UTILITY:
|
2006-02-25 00:20:44 +03:00
|
|
|
case cmTarget::GLOBAL_TARGET:
|
2002-09-04 23:23:56 +04:00
|
|
|
configType = "10";
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2002-11-22 07:54:34 +03:00
|
|
|
std::string flags;
|
2004-09-22 22:42:05 +04:00
|
|
|
if(strcmp(configType, "10") != 0)
|
|
|
|
{
|
2006-05-12 19:56:09 +04:00
|
|
|
const char* linkLanguage =
|
|
|
|
target.GetLinkerLanguage(this->GetGlobalGenerator());
|
2004-10-27 18:53:01 +04:00
|
|
|
if(!linkLanguage)
|
|
|
|
{
|
2006-05-12 19:56:09 +04:00
|
|
|
cmSystemTools::Error
|
|
|
|
("CMake can not determine linker language for target:",
|
|
|
|
target.GetName());
|
2004-10-27 18:53:01 +04:00
|
|
|
return;
|
|
|
|
}
|
2006-04-11 22:54:19 +04:00
|
|
|
if(strcmp(linkLanguage, "C") == 0 || strcmp(linkLanguage, "CXX") == 0)
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
2005-03-22 15:26:45 +03:00
|
|
|
std::string baseFlagVar = "CMAKE_";
|
|
|
|
baseFlagVar += linkLanguage;
|
|
|
|
baseFlagVar += "_FLAGS";
|
2006-03-15 19:02:08 +03:00
|
|
|
flags = this->Makefile->GetRequiredDefinition(baseFlagVar.c_str());
|
2006-02-21 20:19:32 +03:00
|
|
|
std::string flagVar = baseFlagVar + std::string("_") +
|
|
|
|
cmSystemTools::UpperCase(configName);
|
|
|
|
flags += " ";
|
2006-03-15 19:02:08 +03:00
|
|
|
flags += this->Makefile->GetRequiredDefinition(flagVar.c_str());
|
2005-03-22 15:26:45 +03:00
|
|
|
}
|
2006-05-04 21:35:56 +04:00
|
|
|
// set the correct language
|
|
|
|
if(strcmp(linkLanguage, "C") == 0)
|
|
|
|
{
|
|
|
|
flags += " /TC ";
|
|
|
|
}
|
|
|
|
if(strcmp(linkLanguage, "CXX") == 0)
|
|
|
|
{
|
|
|
|
flags += " /TP ";
|
|
|
|
}
|
2004-09-22 22:42:05 +04:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2006-02-20 22:21:10 +03:00
|
|
|
// Add the target-specific flags.
|
|
|
|
if(const char* targetFlags = target.GetProperty("COMPILE_FLAGS"))
|
|
|
|
{
|
|
|
|
flags += " ";
|
|
|
|
flags += targetFlags;
|
|
|
|
}
|
|
|
|
|
2005-07-27 21:36:36 +04:00
|
|
|
// The intermediate directory name consists of a directory for the
|
|
|
|
// target and a subdirectory for the configuration name.
|
|
|
|
std::string intermediateDir = this->GetTargetDirectory(target);
|
|
|
|
intermediateDir += "/";
|
|
|
|
intermediateDir += configName;
|
|
|
|
fout << "\t\t\tIntermediateDirectory=\""
|
|
|
|
<< this->ConvertToXMLOutputPath(intermediateDir.c_str())
|
|
|
|
<< "\"\n"
|
2003-10-16 18:10:49 +04:00
|
|
|
<< "\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
|
2006-03-10 21:06:26 +03:00
|
|
|
// default to MBCS
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string defs = this->Makefile->GetDefineFlags();
|
2003-10-18 00:08:49 +04:00
|
|
|
if(flags.find("D_UNICODE") != flags.npos ||
|
|
|
|
defs.find("D_UNICODE") != flags.npos)
|
2003-10-16 18:10:49 +04:00
|
|
|
{
|
|
|
|
fout << "\t\t\tCharacterSet=\"1\">\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fout << "\t\t\tCharacterSet=\"2\">\n";
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2003-10-16 18:10:49 +04:00
|
|
|
fout << "\t\t\t<Tool\n"
|
|
|
|
<< "\t\t\t\tName=\"VCCLCompilerTool\"\n"
|
|
|
|
<< "\t\t\t\tAdditionalOptions=\"";
|
2004-07-15 00:10:18 +04:00
|
|
|
// now fill the flagMap from the command line flags, and
|
|
|
|
// if a flag is used, it will be removed from the flags string by
|
|
|
|
// this function call
|
2006-05-12 19:56:09 +04:00
|
|
|
this->FillFlagMapFromCommandFlags
|
|
|
|
(flagMap, &cmLocalVisualStudio7GeneratorFlagTable[0], flags);
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string defineFlags = this->Makefile->GetDefineFlags();
|
2006-05-12 19:56:09 +04:00
|
|
|
|
2005-02-10 07:25:09 +03:00
|
|
|
// now check the define flags for flags other than -D and
|
|
|
|
// put them in the map, the -D flags will be left in the defineFlags
|
|
|
|
// variable as -D is not in the flagMap
|
2006-05-12 19:56:09 +04:00
|
|
|
this->FillFlagMapFromCommandFlags
|
|
|
|
(flagMap, &cmLocalVisualStudio7GeneratorFlagTable[0], defineFlags);
|
|
|
|
|
2004-07-15 00:10:18 +04:00
|
|
|
// output remaining flags that were not mapped to anything
|
2003-11-21 22:13:49 +03:00
|
|
|
fout << this->EscapeForXML(flags.c_str()).c_str();
|
2006-03-10 21:06:26 +03:00
|
|
|
fout << " -DCMAKE_INTDIR=\\"" << configName << "\\""
|
2003-10-18 00:19:37 +04:00
|
|
|
<< "\"\n";
|
|
|
|
fout << "\t\t\t\tAdditionalIncludeDirectories=\"";
|
2006-02-18 19:51:23 +03:00
|
|
|
std::vector<std::string> includes;
|
|
|
|
this->GetIncludeDirectories(includes);
|
2003-10-18 00:19:37 +04:00
|
|
|
std::vector<std::string>::iterator i = includes.begin();
|
|
|
|
for(;i != includes.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string ipath = this->ConvertToXMLOutputPath(i->c_str());
|
|
|
|
fout << ipath << ";";
|
|
|
|
}
|
|
|
|
fout << "\"\n";
|
2004-07-15 00:10:18 +04:00
|
|
|
// set a few cmake specific flags
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->Makefile->IsOn("CMAKE_CXX_USE_RTTI"))
|
2004-07-15 00:10:18 +04:00
|
|
|
{
|
|
|
|
flagMap["RuntimeTypeInfo"] = "TRUE";
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
if ( this->Makefile->GetDefinition("CMAKE_CXX_WARNING_LEVEL") )
|
2004-07-15 00:10:18 +04:00
|
|
|
{
|
2006-05-12 19:56:09 +04:00
|
|
|
flagMap["WarningLevel"] =
|
|
|
|
this->Makefile->GetDefinition("CMAKE_CXX_WARNING_LEVEL");
|
2004-07-15 00:10:18 +04:00
|
|
|
}
|
2003-10-16 07:42:06 +04:00
|
|
|
|
2004-07-15 00:10:18 +04:00
|
|
|
// Now copy the flag map into the xml for the file
|
|
|
|
for(std::map<cmStdString, cmStdString>::iterator m = flagMap.begin();
|
|
|
|
m != flagMap.end(); ++m)
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\t" << m->first << "=\"" << m->second << "\"\n";
|
|
|
|
}
|
2006-02-21 20:19:32 +03:00
|
|
|
fout << "\t\t\t\tPreprocessorDefinitions=\"";
|
2002-09-04 23:23:56 +04:00
|
|
|
if(target.GetType() == cmTarget::SHARED_LIBRARY
|
|
|
|
|| target.GetType() == cmTarget::MODULE_LIBRARY)
|
|
|
|
{
|
2003-02-07 22:04:16 +03:00
|
|
|
std::string exportSymbol;
|
2006-03-15 19:02:08 +03:00
|
|
|
if (const char* custom_export_name =
|
|
|
|
target.GetProperty("DEFINE_SYMBOL"))
|
2003-02-07 22:04:16 +03:00
|
|
|
{
|
|
|
|
exportSymbol = custom_export_name;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string id = libName;
|
|
|
|
id += "_EXPORTS";
|
|
|
|
exportSymbol = cmSystemTools::MakeCindentifier(id.c_str());
|
|
|
|
}
|
|
|
|
fout << "," << exportSymbol;
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2005-02-10 07:25:09 +03:00
|
|
|
this->OutputDefineFlags(defineFlags.c_str(), fout);
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "\"\n";
|
|
|
|
fout << "\t\t\t\tAssemblerListingLocation=\"" << configName << "\"\n";
|
2005-07-27 21:36:36 +04:00
|
|
|
fout << "\t\t\t\tObjectFile=\"$(IntDir)\\\"\n";
|
2006-05-12 19:56:09 +04:00
|
|
|
std::map<cmStdString, cmStdString>::iterator mi =
|
|
|
|
flagMap.find("DebugInformationFormat");
|
2006-02-21 20:19:32 +03:00
|
|
|
if(mi != flagMap.end() && mi->second != "1")
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
2006-10-03 22:03:12 +04:00
|
|
|
fout << "\t\t\t\tProgramDataBaseFileName=\""
|
2006-03-15 19:02:08 +03:00
|
|
|
<< this->LibraryOutputPath
|
2006-02-21 20:19:32 +03:00
|
|
|
<< "$(OutDir)/" << libName << ".pdb\"\n";
|
2004-04-16 17:50:31 +04:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "/>\n"; // end of <Tool Name=VCCLCompilerTool
|
|
|
|
fout << "\t\t\t<Tool\n\t\t\t\tName=\"VCCustomBuildTool\"/>\n";
|
|
|
|
fout << "\t\t\t<Tool\n\t\t\t\tName=\"VCResourceCompilerTool\"\n"
|
2003-10-28 19:55:40 +03:00
|
|
|
<< "\t\t\t\tAdditionalIncludeDirectories=\"";
|
2002-09-04 23:23:56 +04:00
|
|
|
for(i = includes.begin();i != includes.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string ipath = this->ConvertToXMLOutputPath(i->c_str());
|
|
|
|
fout << ipath << ";";
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
// add the -D flags to the RC tool
|
2003-10-28 19:55:40 +03:00
|
|
|
fout << "\"\n"
|
2006-02-21 20:19:32 +03:00
|
|
|
<< "\t\t\t\tPreprocessorDefinitions=\"";
|
2005-02-10 07:25:09 +03:00
|
|
|
this->OutputDefineFlags(defineFlags.c_str(), fout);
|
2003-10-28 19:55:40 +03:00
|
|
|
fout << "\" />\n";
|
2006-02-10 07:08:19 +03:00
|
|
|
|
|
|
|
fout << "\t\t\t<Tool\n\t\t\t\tName=\"VCMIDLTool\"\n";
|
2006-02-21 20:19:32 +03:00
|
|
|
fout << "\t\t\t\tPreprocessorDefinitions=\"";
|
2006-02-10 07:08:19 +03:00
|
|
|
this->OutputDefineFlags(defineFlags.c_str(), fout);
|
|
|
|
fout << "\"\n";
|
|
|
|
fout << "\t\t\t\tMkTypLibCompatible=\"FALSE\"\n";
|
2006-07-28 19:21:50 +04:00
|
|
|
if( this->PlatformName == "x64" )
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\tTargetEnvironment=\"3\"\n";
|
|
|
|
}
|
|
|
|
else if( this->PlatformName == "ia64" )
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\tTargetEnvironment=\"2\"\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\tTargetEnvironment=\"1\"\n";
|
|
|
|
}
|
2006-02-10 07:08:19 +03:00
|
|
|
fout << "\t\t\t\tGenerateStublessProxies=\"TRUE\"\n";
|
|
|
|
fout << "\t\t\t\tTypeLibraryName=\"$(InputName).tlb\"\n";
|
|
|
|
fout << "\t\t\t\tOutputDirectory=\"$(IntDir)\"\n";
|
|
|
|
fout << "\t\t\t\tHeaderFileName=\"$(InputName).h\"\n";
|
|
|
|
fout << "\t\t\t\tDLLDataFileName=\"\"\n";
|
|
|
|
fout << "\t\t\t\tInterfaceIdentifierFileName=\"$(InputName)_i.c\"\n";
|
|
|
|
fout << "\t\t\t\tProxyFileName=\"$(InputName)_p.c\"/>\n";
|
|
|
|
// end of <Tool Name=VCMIDLTool
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
this->OutputTargetRules(fout, target, libName);
|
|
|
|
this->OutputBuildTool(fout, configName, libName, target);
|
|
|
|
fout << "\t\t</Configuration>\n";
|
|
|
|
}
|
|
|
|
|
2004-07-15 00:10:18 +04:00
|
|
|
void cmLocalVisualStudio7Generator::FillFlagMapFromCommandFlags(
|
|
|
|
std::map<cmStdString, cmStdString>& flagMap,
|
|
|
|
cmVS7FlagTable* flagTable,
|
|
|
|
std::string& flags)
|
|
|
|
{
|
|
|
|
std::string replace;
|
2005-04-12 21:27:07 +04:00
|
|
|
std::string option;
|
2004-07-15 00:10:18 +04:00
|
|
|
while(flagTable->IDEName)
|
|
|
|
{
|
2005-11-18 18:36:52 +03:00
|
|
|
option.reserve(strlen(flagTable->commandFlag)+2);
|
2005-04-12 21:27:07 +04:00
|
|
|
// first do the - version
|
2005-11-19 16:29:28 +03:00
|
|
|
option = "-";
|
|
|
|
option += flagTable->commandFlag;
|
2005-04-12 21:27:07 +04:00
|
|
|
while(flags.find(option) != flags.npos)
|
2004-07-15 00:10:18 +04:00
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
// replace the flag
|
2005-04-12 21:27:07 +04:00
|
|
|
cmSystemTools::ReplaceString(flags, option.c_str(), "");
|
2004-07-15 00:10:18 +04:00
|
|
|
// now put value into flag map
|
|
|
|
flagMap[flagTable->IDEName] = flagTable->value;
|
|
|
|
}
|
2005-04-12 21:27:07 +04:00
|
|
|
// now do the / version
|
|
|
|
option[0] = '/';
|
|
|
|
while(flags.find(option) != flags.npos)
|
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
// replace the flag
|
2005-04-12 21:27:07 +04:00
|
|
|
cmSystemTools::ReplaceString(flags, option.c_str(), "");
|
|
|
|
// now put value into flag map
|
|
|
|
flagMap[flagTable->IDEName] = flagTable->value;
|
|
|
|
}
|
|
|
|
// move to next flag
|
2004-07-15 00:10:18 +04:00
|
|
|
flagTable++;
|
|
|
|
}
|
2005-11-18 18:36:52 +03:00
|
|
|
|
|
|
|
// 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.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE"))
|
2005-11-18 18:36:52 +03:00
|
|
|
{
|
|
|
|
if(flagMap.find("SuppressStartupBanner") == flagMap.end())
|
|
|
|
{
|
|
|
|
flagMap["SuppressStartupBanner"] = "FALSE";
|
|
|
|
}
|
|
|
|
}
|
2004-07-15 00:10:18 +04:00
|
|
|
}
|
|
|
|
|
2006-01-27 21:48:21 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string
|
|
|
|
cmLocalVisualStudio7Generator
|
|
|
|
::GetBuildTypeLinkerFlags(std::string rootLinkerFlags, const char* configName)
|
|
|
|
{
|
|
|
|
std::string configTypeUpper = cmSystemTools::UpperCase(configName);
|
2006-05-12 19:56:09 +04:00
|
|
|
std::string extraLinkOptionsBuildTypeDef =
|
|
|
|
rootLinkerFlags + "_" + configTypeUpper;
|
2006-01-27 21:48:21 +03:00
|
|
|
|
|
|
|
std::string extraLinkOptionsBuildType =
|
2006-05-12 19:56:09 +04:00
|
|
|
this->Makefile->GetRequiredDefinition
|
|
|
|
(extraLinkOptionsBuildTypeDef.c_str());
|
2004-07-15 00:10:18 +04:00
|
|
|
|
2006-01-27 21:48:21 +03:00
|
|
|
return extraLinkOptionsBuildType;
|
|
|
|
}
|
2005-02-17 18:39:59 +03:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
|
2005-07-13 19:21:30 +04:00
|
|
|
const char* configName,
|
|
|
|
const char *libName,
|
|
|
|
cmTarget &target)
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
|
|
|
std::string targetFullName = target.GetFullName(configName);
|
2002-09-04 23:23:56 +04:00
|
|
|
std::string temp;
|
2003-07-03 20:50:41 +04:00
|
|
|
std::string extraLinkOptions;
|
2004-02-29 02:59:19 +03:00
|
|
|
if(target.GetType() == cmTarget::EXECUTABLE)
|
2003-07-03 20:50:41 +04:00
|
|
|
{
|
2006-05-12 19:56:09 +04:00
|
|
|
extraLinkOptions =
|
|
|
|
this->Makefile->GetRequiredDefinition("CMAKE_EXE_LINKER_FLAGS")
|
|
|
|
+ std::string(" ")
|
|
|
|
+ GetBuildTypeLinkerFlags("CMAKE_EXE_LINKER_FLAGS", configName);
|
2003-07-03 20:50:41 +04:00
|
|
|
}
|
|
|
|
if(target.GetType() == cmTarget::SHARED_LIBRARY)
|
|
|
|
{
|
2006-05-12 19:56:09 +04:00
|
|
|
extraLinkOptions =
|
|
|
|
this->Makefile->GetRequiredDefinition("CMAKE_SHARED_LINKER_FLAGS")
|
|
|
|
+ std::string(" ")
|
|
|
|
+ GetBuildTypeLinkerFlags("CMAKE_SHARED_LINKER_FLAGS", configName);
|
2003-07-03 20:50:41 +04:00
|
|
|
}
|
|
|
|
if(target.GetType() == cmTarget::MODULE_LIBRARY)
|
|
|
|
{
|
2006-05-12 19:56:09 +04:00
|
|
|
extraLinkOptions =
|
|
|
|
this->Makefile->GetRequiredDefinition("CMAKE_MODULE_LINKER_FLAGS")
|
|
|
|
+ std::string(" ")
|
|
|
|
+ GetBuildTypeLinkerFlags("CMAKE_MODULE_LINKER_FLAGS", configName);
|
2002-12-17 18:04:39 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2003-02-07 22:04:16 +03:00
|
|
|
const char* targetLinkFlags = target.GetProperty("LINK_FLAGS");
|
2003-07-03 20:50:41 +04:00
|
|
|
if(targetLinkFlags)
|
|
|
|
{
|
|
|
|
extraLinkOptions += " ";
|
|
|
|
extraLinkOptions += targetLinkFlags;
|
|
|
|
}
|
2006-04-03 20:57:51 +04:00
|
|
|
std::string configTypeUpper = cmSystemTools::UpperCase(configName);
|
|
|
|
std::string linkFlagsConfig = "LINK_FLAGS_";
|
|
|
|
linkFlagsConfig += configTypeUpper;
|
|
|
|
targetLinkFlags = target.GetProperty(linkFlagsConfig.c_str());
|
|
|
|
if(targetLinkFlags)
|
|
|
|
{
|
|
|
|
extraLinkOptions += " ";
|
|
|
|
extraLinkOptions += targetLinkFlags;
|
|
|
|
}
|
2005-02-11 22:20:51 +03:00
|
|
|
std::map<cmStdString, cmStdString> flagMap;
|
2006-05-12 19:56:09 +04:00
|
|
|
this->FillFlagMapFromCommandFlags
|
|
|
|
(flagMap, &cmLocalVisualStudio7GeneratorLinkFlagTable[0],
|
|
|
|
extraLinkOptions);
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
switch(target.GetType())
|
|
|
|
{
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string libpath = this->LibraryOutputPath +
|
2006-01-14 02:18:32 +03:00
|
|
|
"$(OutDir)/" + targetFullName;
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t\t\t<Tool\n"
|
|
|
|
<< "\t\t\t\tName=\"VCLibrarianTool\"\n";
|
|
|
|
if(const char* libflags = target.GetProperty("STATIC_LIBRARY_FLAGS"))
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\tAdditionalOptions=\"" << libflags << "\"\n";
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
fout << "\t\t\t\tOutputFile=\""
|
2006-06-26 20:06:44 +04:00
|
|
|
<< this->ConvertToXMLOutputPathSingle(libpath.c_str()) << "\"/>\n";
|
2005-07-13 19:21:30 +04:00
|
|
|
break;
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
2005-07-13 19:21:30 +04:00
|
|
|
{
|
2006-01-14 02:18:32 +03:00
|
|
|
// Compute the link library and directory information.
|
|
|
|
std::vector<cmStdString> linkLibs;
|
|
|
|
std::vector<cmStdString> linkDirs;
|
|
|
|
this->ComputeLinkInformation(target, configName, linkLibs, linkDirs);
|
|
|
|
|
2006-04-12 00:55:49 +04:00
|
|
|
// Get the language to use for linking.
|
2006-05-12 19:56:09 +04:00
|
|
|
const char* linkLanguage =
|
|
|
|
target.GetLinkerLanguage(this->GetGlobalGenerator());
|
2006-04-12 00:55:49 +04:00
|
|
|
if(!linkLanguage)
|
|
|
|
{
|
2006-05-12 19:56:09 +04:00
|
|
|
cmSystemTools::Error
|
|
|
|
("CMake can not determine linker language for target:",
|
|
|
|
target.GetName());
|
2006-04-12 00:55:49 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compute the variable name to lookup standard libraries for this
|
|
|
|
// language.
|
|
|
|
std::string standardLibsVar = "CMAKE_";
|
|
|
|
standardLibsVar += linkLanguage;
|
|
|
|
standardLibsVar += "_STANDARD_LIBRARIES";
|
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t\t\t<Tool\n"
|
|
|
|
<< "\t\t\t\tName=\"VCLinkerTool\"\n"
|
|
|
|
<< "\t\t\t\tAdditionalOptions=\"/MACHINE:I386";
|
|
|
|
if(extraLinkOptions.size())
|
2004-09-22 22:42:05 +04:00
|
|
|
{
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << " " << cmLocalVisualStudio7Generator::EscapeForXML(
|
|
|
|
extraLinkOptions.c_str()).c_str();
|
|
|
|
}
|
2006-02-16 00:38:57 +03:00
|
|
|
// Use the NOINHERIT macro to avoid getting VS project default
|
|
|
|
// libraries which may be set by the user to something bad.
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\"\n"
|
2006-02-21 01:47:12 +03:00
|
|
|
<< "\t\t\t\tAdditionalDependencies=\"$(NOINHERIT) "
|
2006-04-12 00:55:49 +04:00
|
|
|
<< this->Makefile->GetSafeDefinition(standardLibsVar.c_str())
|
2006-02-21 01:47:12 +03:00
|
|
|
<< " ";
|
2006-01-14 02:18:32 +03:00
|
|
|
this->OutputLibraries(fout, linkLibs);
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\"\n";
|
2006-03-15 19:02:08 +03:00
|
|
|
temp = this->LibraryOutputPath;
|
2005-07-13 19:21:30 +04:00
|
|
|
temp += configName;
|
|
|
|
temp += "/";
|
2006-01-14 02:18:32 +03:00
|
|
|
temp += targetFullName;
|
2006-03-10 21:06:26 +03:00
|
|
|
fout << "\t\t\t\tOutputFile=\""
|
2005-07-13 19:21:30 +04:00
|
|
|
<< this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n";
|
|
|
|
for(std::map<cmStdString, cmStdString>::iterator i = flagMap.begin();
|
|
|
|
i != flagMap.end(); ++i)
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\t" << i->first << "=\"" << i->second << "\"\n";
|
|
|
|
}
|
|
|
|
fout << "\t\t\t\tAdditionalLibraryDirectories=\"";
|
2006-01-14 02:18:32 +03:00
|
|
|
this->OutputLibraryDirectories(fout, linkDirs);
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\"\n";
|
|
|
|
this->OutputModuleDefinitionFile(fout, target);
|
2006-03-15 19:02:08 +03:00
|
|
|
temp = this->LibraryOutputPath;
|
2005-07-13 19:21:30 +04:00
|
|
|
temp += "$(OutDir)/";
|
|
|
|
temp += libName;
|
|
|
|
temp += ".pdb";
|
2006-10-03 22:03:12 +04:00
|
|
|
fout << "\t\t\t\tProgramDataBaseFile=\"" <<
|
2005-07-13 19:21:30 +04:00
|
|
|
this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n";
|
|
|
|
if(strcmp(configName, "Debug") == 0
|
|
|
|
|| strcmp(configName, "RelWithDebInfo") == 0)
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\tGenerateDebugInformation=\"TRUE\"\n";
|
2004-09-22 22:42:05 +04:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
std::string stackVar = "CMAKE_";
|
|
|
|
stackVar += linkLanguage;
|
|
|
|
stackVar += "_STACK_SIZE";
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* stackVal = this->Makefile->GetDefinition(stackVar.c_str());
|
2005-07-13 19:21:30 +04:00
|
|
|
if(stackVal)
|
2004-09-22 22:42:05 +04:00
|
|
|
{
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t\t\t\tStackReserveSize=\"" << stackVal << "\"\n";
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
temp = this->LibraryOutputPath;
|
2005-07-13 19:21:30 +04:00
|
|
|
temp += configName;
|
|
|
|
temp += "/";
|
2006-05-12 19:56:09 +04:00
|
|
|
temp +=
|
|
|
|
cmSystemTools::GetFilenameWithoutLastExtension(targetFullName.c_str());
|
2005-07-13 19:21:30 +04:00
|
|
|
temp += ".lib";
|
2006-05-12 19:56:09 +04:00
|
|
|
fout << "\t\t\t\tImportLibrary=\""
|
|
|
|
<< this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"/>\n";
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmTarget::EXECUTABLE:
|
|
|
|
{
|
2006-01-14 02:18:32 +03:00
|
|
|
// Compute the link library and directory information.
|
|
|
|
std::vector<cmStdString> linkLibs;
|
|
|
|
std::vector<cmStdString> linkDirs;
|
|
|
|
this->ComputeLinkInformation(target, configName, linkLibs, linkDirs);
|
|
|
|
|
2006-04-12 00:55:49 +04:00
|
|
|
// Get the language to use for linking.
|
2006-05-12 19:56:09 +04:00
|
|
|
const char* linkLanguage =
|
|
|
|
target.GetLinkerLanguage(this->GetGlobalGenerator());
|
2006-04-12 00:55:49 +04:00
|
|
|
if(!linkLanguage)
|
|
|
|
{
|
2006-05-12 19:56:09 +04:00
|
|
|
cmSystemTools::Error
|
|
|
|
("CMake can not determine linker language for target:",
|
|
|
|
target.GetName());
|
2006-04-12 00:55:49 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compute the variable name to lookup standard libraries for this
|
|
|
|
// language.
|
|
|
|
std::string standardLibsVar = "CMAKE_";
|
|
|
|
standardLibsVar += linkLanguage;
|
|
|
|
standardLibsVar += "_STANDARD_LIBRARIES";
|
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t\t\t<Tool\n"
|
|
|
|
<< "\t\t\t\tName=\"VCLinkerTool\"\n"
|
2006-05-12 18:09:31 +04:00
|
|
|
<< "\t\t\t\tAdditionalOptions=\"";
|
2005-07-13 19:21:30 +04:00
|
|
|
if(extraLinkOptions.size())
|
|
|
|
{
|
|
|
|
fout << " " << cmLocalVisualStudio7Generator::EscapeForXML(
|
|
|
|
extraLinkOptions.c_str()).c_str();
|
|
|
|
}
|
2006-02-16 00:38:57 +03:00
|
|
|
// Use the NOINHERIT macro to avoid getting VS project default
|
|
|
|
// libraries which may be set by the user to something bad.
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\"\n"
|
2006-02-16 00:38:57 +03:00
|
|
|
<< "\t\t\t\tAdditionalDependencies=\"$(NOINHERIT) "
|
2006-04-12 00:55:49 +04:00
|
|
|
<< this->Makefile->GetSafeDefinition(standardLibsVar.c_str())
|
2005-07-13 19:21:30 +04:00
|
|
|
<< " ";
|
2006-01-14 02:18:32 +03:00
|
|
|
this->OutputLibraries(fout, linkLibs);
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\"\n";
|
2006-03-15 19:02:08 +03:00
|
|
|
temp = this->ExecutableOutputPath;
|
2005-07-14 00:57:29 +04:00
|
|
|
temp += configName;
|
2005-07-13 19:21:30 +04:00
|
|
|
temp += "/";
|
2006-01-14 02:18:32 +03:00
|
|
|
temp += targetFullName;
|
2006-05-12 19:56:09 +04:00
|
|
|
fout << "\t\t\t\tOutputFile=\""
|
|
|
|
<< this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n";
|
2005-07-13 19:21:30 +04:00
|
|
|
for(std::map<cmStdString, cmStdString>::iterator i = flagMap.begin();
|
|
|
|
i != flagMap.end(); ++i)
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\t" << i->first << "=\"" << i->second << "\"\n";
|
|
|
|
}
|
|
|
|
fout << "\t\t\t\tAdditionalLibraryDirectories=\"";
|
2006-01-14 02:18:32 +03:00
|
|
|
this->OutputLibraryDirectories(fout, linkDirs);
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\"\n";
|
2006-10-03 22:03:12 +04:00
|
|
|
fout << "\t\t\t\tProgramDataBaseFile=\"" << this->LibraryOutputPath
|
2005-07-13 19:21:30 +04:00
|
|
|
<< "$(OutDir)\\" << libName << ".pdb\"\n";
|
2006-03-10 21:06:26 +03:00
|
|
|
if(strcmp(configName, "Debug") == 0
|
2005-07-13 19:21:30 +04:00
|
|
|
|| strcmp(configName, "RelWithDebInfo") == 0)
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\tGenerateDebugInformation=\"TRUE\"\n";
|
2004-09-22 22:42:05 +04:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
if ( target.GetPropertyAsBool("WIN32_EXECUTABLE") )
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\tSubSystem=\"2\"\n";
|
|
|
|
}
|
|
|
|
else
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t\t\t\tSubSystem=\"1\"\n";
|
2006-03-10 21:06:26 +03:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
std::string stackVar = "CMAKE_";
|
|
|
|
stackVar += linkLanguage;
|
|
|
|
stackVar += "_STACK_SIZE";
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* stackVal = this->Makefile->GetDefinition(stackVar.c_str());
|
2005-07-13 19:21:30 +04:00
|
|
|
if(stackVal)
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\tStackReserveSize=\"" << stackVal << "\"";
|
|
|
|
}
|
|
|
|
fout << "/>\n";
|
|
|
|
break;
|
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
case cmTarget::UTILITY:
|
2006-02-25 00:20:44 +03:00
|
|
|
case cmTarget::GLOBAL_TARGET:
|
2002-09-04 23:23:56 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-12 19:56:09 +04:00
|
|
|
void cmLocalVisualStudio7Generator
|
|
|
|
::OutputModuleDefinitionFile(std::ostream& fout,
|
|
|
|
cmTarget &target)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
std::vector<cmSourceFile*> const& classes = target.GetSourceFiles();
|
2006-03-10 21:06:26 +03:00
|
|
|
for(std::vector<cmSourceFile*>::const_iterator i = classes.begin();
|
2002-09-04 23:23:56 +04:00
|
|
|
i != classes.end(); i++)
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
2002-09-04 23:23:56 +04:00
|
|
|
if(cmSystemTools::UpperCase((*i)->GetSourceExtension()) == "DEF")
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\tModuleDefinitionFile=\""
|
|
|
|
<< this->ConvertToXMLOutputPath((*i)->GetFullPath().c_str())
|
|
|
|
<< "\"\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalVisualStudio7Generator
|
|
|
|
::OutputLibraries(std::ostream& fout,
|
|
|
|
std::vector<cmStdString> const& libs)
|
|
|
|
{
|
|
|
|
for(std::vector<cmStdString>::const_iterator l = libs.begin();
|
|
|
|
l != libs.end(); ++l)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-01-14 02:18:32 +03:00
|
|
|
fout << this->ConvertToXMLOutputPath(l->c_str()) << " ";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalVisualStudio7Generator
|
|
|
|
::OutputLibraryDirectories(std::ostream& fout,
|
|
|
|
std::vector<cmStdString> const& dirs)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-01-14 02:18:32 +03:00
|
|
|
const char* comma = "";
|
|
|
|
for(std::vector<cmStdString>::const_iterator d = dirs.begin();
|
|
|
|
d != dirs.end(); ++d)
|
|
|
|
{
|
2006-04-20 23:28:56 +04:00
|
|
|
// Remove any trailing slash and skip empty paths.
|
2006-01-14 02:18:32 +03:00
|
|
|
std::string dir = *d;
|
2006-04-20 23:28:56 +04:00
|
|
|
if(dir[dir.size()-1] == '/')
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-04-20 23:28:56 +04:00
|
|
|
dir = dir.substr(0, dir.size()-1);
|
|
|
|
}
|
|
|
|
if(dir.empty())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Switch to a relative path specification if it is shorter.
|
|
|
|
if(cmSystemTools::FileIsFullPath(dir.c_str()))
|
|
|
|
{
|
|
|
|
std::string rel = this->Convert(dir.c_str(), START_OUTPUT, UNCHANGED);
|
|
|
|
if(rel.size() < dir.size())
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-04-20 23:28:56 +04:00
|
|
|
dir = rel;
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
}
|
2006-04-20 23:28:56 +04:00
|
|
|
|
|
|
|
// First search a configuration-specific subdirectory and then the
|
|
|
|
// original directory.
|
|
|
|
fout << comma << this->ConvertToXMLOutputPath((dir+"/$(OutDir)").c_str())
|
|
|
|
<< "," << this->ConvertToXMLOutputPath(dir.c_str());
|
|
|
|
comma = ",";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2005-02-10 07:25:09 +03:00
|
|
|
void cmLocalVisualStudio7Generator::OutputDefineFlags(const char* flags,
|
|
|
|
std::ostream& fout)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2005-02-10 07:25:09 +03:00
|
|
|
std::string defs = flags;
|
2003-10-18 00:08:49 +04:00
|
|
|
cmSystemTools::ReplaceString(defs, "/D","-D");
|
2002-09-04 23:23:56 +04:00
|
|
|
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;
|
|
|
|
}
|
2002-12-17 02:28:43 +03:00
|
|
|
|
2006-05-23 23:01:15 +04:00
|
|
|
// Remove trailing whitespace from the definition.
|
|
|
|
while(!define.empty() && isspace(define[define.size()-1]))
|
|
|
|
{
|
|
|
|
define = define.substr(0, define.size()-1);
|
|
|
|
}
|
|
|
|
|
2005-10-03 22:33:35 +04:00
|
|
|
// Double-quotes in the value of the definition must be escaped
|
|
|
|
// with a backslash. The entire definition should be quoted in
|
|
|
|
// the generated xml attribute to avoid confusing the VS parser.
|
|
|
|
cmSystemTools::ReplaceString(define, "\"", "\\"");
|
2006-10-04 19:33:07 +04:00
|
|
|
// if the define has something in it that is not a letter or a number
|
|
|
|
// then quote it
|
|
|
|
if(define.
|
|
|
|
find_first_not_of(
|
|
|
|
"-_abcdefghigklmnopqrstuvwxyz1234567890ABCDEFGHIGKLMNOPQRSTUVWXYZ")
|
|
|
|
!= define.npos)
|
|
|
|
{
|
|
|
|
fout << """ << define << "",";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fout << define << ",";
|
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
if(!done)
|
|
|
|
{
|
|
|
|
pos = defs.find("-D", nextpos);
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2003-06-24 23:24:30 +04:00
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteVCProjFile(std::ostream& fout,
|
2003-06-03 18:30:23 +04:00
|
|
|
const char *libName,
|
|
|
|
cmTarget &target)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
// get the configurations
|
2006-03-10 21:06:26 +03:00
|
|
|
std::vector<std::string> *configs =
|
2003-06-03 18:30:23 +04:00
|
|
|
static_cast<cmGlobalVisualStudio7Generator *>
|
2006-03-15 19:02:08 +03:00
|
|
|
(this->GlobalGenerator)->GetConfigurations();
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2003-06-24 23:24:30 +04:00
|
|
|
// trace the visual studio dependencies
|
|
|
|
std::string name = libName;
|
|
|
|
name += ".vcproj.cmake";
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// We may be modifying the source groups temporarily, so make a copy.
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<cmSourceGroup> sourceGroups = this->Makefile->GetSourceGroups();
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// get the classes from the source lists then add them to the groups
|
2003-06-03 18:30:23 +04:00
|
|
|
std::vector<cmSourceFile*> & classes = target.GetSourceFiles();
|
2006-03-10 21:06:26 +03:00
|
|
|
for(std::vector<cmSourceFile*>::const_iterator i = classes.begin();
|
2002-09-04 23:23:56 +04:00
|
|
|
i != classes.end(); i++)
|
|
|
|
{
|
|
|
|
// Add the file to the list of sources.
|
|
|
|
std::string source = (*i)->GetFullPath();
|
|
|
|
if(cmSystemTools::UpperCase((*i)->GetSourceExtension()) == "DEF")
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ModuleDefinitionFile = (*i)->GetFullPath();
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
cmSourceGroup& sourceGroup =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->FindSourceGroup(source.c_str(), sourceGroups);
|
2003-07-23 23:32:54 +04:00
|
|
|
sourceGroup.AssignSource(*i);
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2006-07-11 19:41:38 +04:00
|
|
|
// Compute which sources need unique object computation.
|
|
|
|
this->ComputeObjectNameRequirements(sourceGroups);
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// open the project
|
|
|
|
this->WriteProjectStart(fout, libName, target, sourceGroups);
|
|
|
|
// write the configuration information
|
|
|
|
this->WriteConfigurations(fout, libName, target);
|
|
|
|
|
|
|
|
fout << "\t<Files>\n";
|
2003-02-06 23:18:43 +03:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
// Loop through every source group.
|
2005-07-13 19:21:30 +04:00
|
|
|
for(unsigned int i = 0; i < sourceGroups.size(); ++i)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2005-07-13 19:21:30 +04:00
|
|
|
cmSourceGroup sg = sourceGroups[i];
|
|
|
|
this->WriteGroup(&sg, target, fout, libName, configs);
|
|
|
|
}
|
|
|
|
|
|
|
|
//}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t</Files>\n";
|
|
|
|
|
|
|
|
// Write the VCProj file's footer.
|
|
|
|
this->WriteVCProjFooter(fout);
|
|
|
|
}
|
|
|
|
|
2006-05-12 19:56:09 +04:00
|
|
|
void cmLocalVisualStudio7Generator
|
|
|
|
::WriteGroup(const cmSourceGroup *sg, cmTarget target,
|
|
|
|
std::ostream &fout, const char *libName,
|
|
|
|
std::vector<std::string> *configs)
|
2005-07-13 19:21:30 +04:00
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
const std::vector<const cmSourceFile *> &sourceFiles =
|
2005-07-13 19:21:30 +04:00
|
|
|
sg->GetSourceFiles();
|
|
|
|
// If the group is empty, don't write it at all.
|
2005-12-12 19:34:17 +03:00
|
|
|
if(sourceFiles.empty() && sg->GetGroupChildren().empty())
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
|
|
|
return;
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
// If the group has a name, write the header.
|
|
|
|
std::string name = sg->GetName();
|
|
|
|
if(name != "")
|
|
|
|
{
|
|
|
|
this->WriteVCProjBeginGroup(fout, name.c_str(), "");
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
// Loop through each source in the source group.
|
2006-04-21 16:59:11 +04:00
|
|
|
std::string objectName;
|
2005-07-13 19:21:30 +04:00
|
|
|
for(std::vector<const cmSourceFile *>::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;
|
2006-07-11 19:41:38 +04:00
|
|
|
if(this->NeedObjectName.find(*sf) != this->NeedObjectName.end())
|
2006-04-17 21:58:28 +04:00
|
|
|
{
|
2006-07-11 19:41:38 +04:00
|
|
|
objectName = this->GetObjectFileNameWithoutTarget(*(*sf));
|
2006-04-17 21:58:28 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-04-21 16:59:11 +04:00
|
|
|
objectName = "";
|
2006-04-17 21:58:28 +04:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
|
2006-02-20 22:21:10 +03:00
|
|
|
// Add per-source flags.
|
2005-07-13 19:21:30 +04:00
|
|
|
const char* cflags = (*sf)->GetProperty("COMPILE_FLAGS");
|
|
|
|
if(cflags)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-01-25 16:38:06 +03:00
|
|
|
compileFlags += " ";
|
|
|
|
compileFlags += cflags;
|
2006-03-10 21:06:26 +03:00
|
|
|
}
|
2006-05-12 19:56:09 +04:00
|
|
|
const char* lang = this->GlobalGenerator->GetLanguageFromExtension
|
|
|
|
((*sf)->GetSourceExtension().c_str());
|
|
|
|
const char* linkLanguage = target.GetLinkerLanguage
|
|
|
|
(this->GetGlobalGenerator());
|
|
|
|
|
2006-05-04 21:35:56 +04:00
|
|
|
// if the source file does not match the linker language
|
|
|
|
// then force c or c++
|
|
|
|
if(linkLanguage && lang && strcmp(lang, linkLanguage) != 0)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-05-04 21:35:56 +04:00
|
|
|
if(strcmp(lang, "CXX") == 0)
|
|
|
|
{
|
|
|
|
// force a C++ file type
|
|
|
|
compileFlags += " /TP ";
|
|
|
|
}
|
|
|
|
else if(strcmp(lang, "C") == 0)
|
|
|
|
{
|
|
|
|
// force to c
|
|
|
|
compileFlags += " /TC ";
|
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|
|
|
|
// Check for extra object-file dependencies.
|
|
|
|
const char* deps = (*sf)->GetProperty("OBJECT_DEPENDS");
|
|
|
|
if(deps)
|
|
|
|
{
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
cmSystemTools::ExpandListArgument(deps, depends);
|
|
|
|
if(!depends.empty())
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2005-07-13 19:21:30 +04:00
|
|
|
std::vector<std::string>::iterator i = depends.begin();
|
|
|
|
additionalDeps = this->ConvertToXMLOutputPath(i->c_str());
|
|
|
|
for(++i;i != depends.end(); ++i)
|
|
|
|
{
|
|
|
|
additionalDeps += ";";
|
|
|
|
additionalDeps += this->ConvertToXMLOutputPath(i->c_str());
|
|
|
|
}
|
2003-06-03 18:30:23 +04:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|
2006-02-25 00:20:44 +03:00
|
|
|
if (source != libName || target.GetType() == cmTarget::UTILITY ||
|
|
|
|
target.GetType() == cmTarget::GLOBAL_TARGET )
|
2005-07-13 19:21:30 +04:00
|
|
|
{
|
|
|
|
fout << "\t\t\t<File\n";
|
|
|
|
std::string d = this->ConvertToXMLOutputPathSingle(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)
|
2003-06-03 18:30:23 +04:00
|
|
|
{
|
2005-07-13 19:21:30 +04:00
|
|
|
// Construct the entire set of commands in one string.
|
2006-05-12 19:56:09 +04:00
|
|
|
std::string script =
|
|
|
|
this->ConstructScript(command->GetCommandLines(),
|
2006-09-27 21:43:46 +04:00
|
|
|
command->GetWorkingDirectory(),
|
|
|
|
command->GetEscapeOldStyle(),
|
|
|
|
command->GetEscapeAllowMakeVars());
|
2006-04-11 19:06:19 +04:00
|
|
|
std::string comment = this->ConstructComment(*command);
|
2005-07-13 19:21:30 +04:00
|
|
|
const char* flags = compileFlags.size() ? compileFlags.c_str(): 0;
|
|
|
|
this->WriteCustomRule(fout, source.c_str(), script.c_str(),
|
2006-04-11 19:06:19 +04:00
|
|
|
comment.c_str(), command->GetDepends(),
|
|
|
|
command->GetOutputs(), flags);
|
2003-06-03 18:30:23 +04:00
|
|
|
}
|
2006-05-12 19:56:09 +04:00
|
|
|
else if(compileFlags.size() || additionalDeps.length()
|
|
|
|
|| objectName.size())
|
2003-06-03 18:30:23 +04:00
|
|
|
{
|
2005-07-13 19:21:30 +04:00
|
|
|
const char* aCompilerTool = "VCCLCompilerTool";
|
|
|
|
std::string ext = (*sf)->GetSourceExtension();
|
|
|
|
ext = cmSystemTools::LowerCase(ext);
|
|
|
|
if(ext == "idl")
|
2002-12-14 00:16:48 +03:00
|
|
|
{
|
2005-07-13 19:21:30 +04:00
|
|
|
aCompilerTool = "VCMIDLTool";
|
2002-12-14 00:16:48 +03:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
if(ext == "rc")
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2005-07-13 19:21:30 +04:00
|
|
|
aCompilerTool = "VCResourceCompilerTool";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
if(ext == "def")
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2005-07-13 19:21:30 +04:00
|
|
|
aCompilerTool = "VCCustomBuildTool";
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
for(std::vector<std::string>::iterator i = configs->begin();
|
2005-07-13 19:21:30 +04:00
|
|
|
i != configs->end(); ++i)
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\t<FileConfiguration\n"
|
2006-05-12 19:56:09 +04:00
|
|
|
<< "\t\t\t\t\tName=\"" << *i
|
|
|
|
<< "|" << this->PlatformName << "\">\n"
|
2005-07-13 19:21:30 +04:00
|
|
|
<< "\t\t\t\t\t<Tool\n"
|
|
|
|
<< "\t\t\t\t\tName=\"" << aCompilerTool << "\"\n";
|
|
|
|
if(compileFlags.size())
|
2006-06-06 20:01:23 +04:00
|
|
|
{
|
|
|
|
std::string compileFlagsCopy = compileFlags;
|
|
|
|
std::map<cmStdString, cmStdString> fileFlagMap;
|
|
|
|
this->FillFlagMapFromCommandFlags
|
2006-06-12 23:44:10 +04:00
|
|
|
(fileFlagMap,
|
|
|
|
&cmLocalVisualStudio7GeneratorFlagTable[0],
|
|
|
|
compileFlagsCopy);
|
|
|
|
if(compileFlagsCopy.size() &&
|
|
|
|
compileFlagsCopy.find_first_not_of(" ")
|
2006-06-06 20:01:23 +04:00
|
|
|
!= compileFlagsCopy.npos)
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\t\tAdditionalOptions=\""
|
|
|
|
<< this->EscapeForXML(compileFlagsCopy.c_str()) << "\"\n";
|
|
|
|
}
|
2006-06-12 23:44:10 +04:00
|
|
|
for(std::map<cmStdString,
|
|
|
|
cmStdString>::iterator m = fileFlagMap.begin();
|
2006-06-06 20:01:23 +04:00
|
|
|
m != fileFlagMap.end(); ++m)
|
|
|
|
{
|
2006-06-13 17:46:10 +04:00
|
|
|
fout << "\t\t\t\t\t" << m->first << "=\""
|
|
|
|
<< m->second << "\"\n";
|
2006-06-06 20:01:23 +04:00
|
|
|
}
|
2005-03-22 15:26:45 +03:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
if(additionalDeps.length())
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t\t\t\t\tAdditionalDependencies=\""
|
|
|
|
<< additionalDeps.c_str() << "\"\n";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2006-04-21 16:59:11 +04:00
|
|
|
if(objectName.size())
|
2006-04-17 21:58:28 +04:00
|
|
|
{
|
|
|
|
fout << "\t\t\t\t\tObjectFile=\"$(IntDir)/"
|
2006-04-21 16:59:11 +04:00
|
|
|
<< objectName.c_str() << "\"\n";
|
2006-04-17 21:58:28 +04:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t\t\t\t\t/>\n"
|
|
|
|
<< "\t\t\t\t</FileConfiguration>\n";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t\t\t</File>\n";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
std::vector<cmSourceGroup> children = sg->GetGroupChildren();
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
for(unsigned int i=0;i<children.size();++i)
|
|
|
|
{
|
|
|
|
this->WriteGroup(&children[i], target, fout, libName, configs);
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
// If the group has a name, write the footer.
|
|
|
|
if(name != "")
|
|
|
|
{
|
|
|
|
this->WriteVCProjEndGroup(fout);
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2003-06-03 18:30:23 +04:00
|
|
|
void cmLocalVisualStudio7Generator::
|
|
|
|
WriteCustomRule(std::ostream& fout,
|
|
|
|
const char* source,
|
|
|
|
const char* command,
|
|
|
|
const char* comment,
|
|
|
|
const std::vector<std::string>& depends,
|
2006-04-11 19:06:19 +04:00
|
|
|
const std::vector<std::string>& outputs,
|
2003-06-03 18:30:23 +04:00
|
|
|
const char* compileFlags)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-04-11 19:06:19 +04:00
|
|
|
// Write the rule for each configuration.
|
2002-09-04 23:23:56 +04:00
|
|
|
std::vector<std::string>::iterator i;
|
2006-03-10 21:06:26 +03:00
|
|
|
std::vector<std::string> *configs =
|
2006-05-12 19:56:09 +04:00
|
|
|
static_cast<cmGlobalVisualStudio7Generator *>
|
|
|
|
(this->GlobalGenerator)->GetConfigurations();
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
for(i = configs->begin(); i != configs->end(); ++i)
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\t<FileConfiguration\n";
|
2006-03-30 22:49:56 +04:00
|
|
|
fout << "\t\t\t\t\tName=\"" << *i << "|" << this->PlatformName << "\">\n";
|
2002-09-04 23:23:56 +04:00
|
|
|
if(compileFlags)
|
|
|
|
{
|
|
|
|
fout << "\t\t\t\t\t<Tool\n"
|
|
|
|
<< "\t\t\t\t\tName=\"VCCLCompilerTool\"\n"
|
|
|
|
<< "\t\t\t\t\tAdditionalOptions=\""
|
2003-11-21 22:13:49 +03:00
|
|
|
<< this->EscapeForXML(compileFlags) << "\"/>\n";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
fout << "\t\t\t\t\t<Tool\n"
|
|
|
|
<< "\t\t\t\t\tName=\"VCCustomBuildTool\"\n"
|
2006-05-12 19:56:09 +04:00
|
|
|
<< "\t\t\t\t\tDescription=\""
|
|
|
|
<< this->EscapeForXML(comment) << "\"\n"
|
|
|
|
<< "\t\t\t\t\tCommandLine=\""
|
|
|
|
<< this->EscapeForXML(command) << "\"\n"
|
2002-09-04 23:23:56 +04:00
|
|
|
<< "\t\t\t\t\tAdditionalDependencies=\"";
|
2006-08-26 06:56:41 +04:00
|
|
|
if(depends.empty())
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
2006-08-26 06:56:41 +04:00
|
|
|
// There are no real dependencies. Produce an artificial one to
|
|
|
|
// make sure the rule runs reliably.
|
|
|
|
if(!cmSystemTools::FileExists(source))
|
|
|
|
{
|
|
|
|
std::ofstream depout(source);
|
|
|
|
depout << "Artificial dependency for a custom command.\n";
|
|
|
|
}
|
|
|
|
fout << this->ConvertToXMLOutputPath(source);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Write out the dependencies for the rule.
|
|
|
|
std::string temp;
|
|
|
|
for(std::vector<std::string>::const_iterator d = depends.begin();
|
|
|
|
d != depends.end(); ++d)
|
|
|
|
{
|
2006-08-26 18:22:23 +04:00
|
|
|
// Get the real name of the dependency in case it is a CMake target.
|
2006-08-26 06:56:41 +04:00
|
|
|
std::string dep = this->GetRealDependency(d->c_str(), i->c_str());
|
|
|
|
fout << this->ConvertToXMLOutputPath(dep.c_str())
|
|
|
|
<< ";";
|
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
fout << "\"\n";
|
|
|
|
fout << "\t\t\t\t\tOutputs=\"";
|
2006-04-11 19:06:19 +04:00
|
|
|
if(outputs.empty())
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
fout << source << "_force";
|
|
|
|
}
|
2006-04-11 19:06:19 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// Write a rule for the output generated by this command.
|
|
|
|
const char* sep = "";
|
|
|
|
for(std::vector<std::string>::const_iterator o = outputs.begin();
|
|
|
|
o != outputs.end(); ++o)
|
|
|
|
{
|
|
|
|
fout << sep << this->ConvertToXMLOutputPathSingle(o->c_str());
|
|
|
|
sep = ";";
|
|
|
|
}
|
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "\"/>\n";
|
|
|
|
fout << "\t\t\t\t</FileConfiguration>\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteVCProjBeginGroup(std::ostream& fout,
|
2005-07-13 19:21:30 +04:00
|
|
|
const char* group,
|
|
|
|
const char* )
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
fout << "\t\t<Filter\n"
|
|
|
|
<< "\t\t\tName=\"" << group << "\"\n"
|
|
|
|
<< "\t\t\tFilter=\"\">\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmLocalVisualStudio7Generator::WriteVCProjEndGroup(std::ostream& fout)
|
|
|
|
{
|
|
|
|
fout << "\t\t</Filter>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// look for custom rules on a target and collect them together
|
2006-05-12 19:56:09 +04:00
|
|
|
void cmLocalVisualStudio7Generator
|
|
|
|
::OutputTargetRules(std::ostream& fout,
|
|
|
|
cmTarget &target,
|
|
|
|
const char * /*libName*/)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-02-25 01:35:35 +03:00
|
|
|
if (target.GetType() > cmTarget::GLOBAL_TARGET)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2003-06-03 18:30:23 +04:00
|
|
|
// add the pre build rules
|
|
|
|
fout << "\t\t\t<Tool\n\t\t\t\tName=\"VCPreBuildEventTool\"";
|
2002-09-04 23:23:56 +04:00
|
|
|
bool init = false;
|
2006-03-10 21:06:26 +03:00
|
|
|
for (std::vector<cmCustomCommand>::const_iterator cr =
|
|
|
|
target.GetPreBuildCommands().begin();
|
2003-06-03 18:30:23 +04:00
|
|
|
cr != target.GetPreBuildCommands().end(); ++cr)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2003-06-03 18:30:23 +04:00
|
|
|
if(!init)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2003-06-03 18:30:23 +04:00
|
|
|
fout << "\nCommandLine=\"";
|
|
|
|
init = true;
|
|
|
|
}
|
2006-09-27 21:43:46 +04:00
|
|
|
std::string script =
|
|
|
|
this->ConstructScript(cr->GetCommandLines(),
|
|
|
|
cr->GetWorkingDirectory(),
|
|
|
|
cr->GetEscapeOldStyle(),
|
|
|
|
cr->GetEscapeAllowMakeVars());
|
2005-02-22 18:32:44 +03:00
|
|
|
fout << this->EscapeForXML(script.c_str()).c_str();
|
2003-06-03 18:30:23 +04:00
|
|
|
}
|
|
|
|
if (init)
|
|
|
|
{
|
|
|
|
fout << "\"";
|
|
|
|
}
|
|
|
|
fout << "/>\n";
|
|
|
|
|
|
|
|
// add the pre Link rules
|
|
|
|
fout << "\t\t\t<Tool\n\t\t\t\tName=\"VCPreLinkEventTool\"";
|
|
|
|
init = false;
|
2006-03-10 21:06:26 +03:00
|
|
|
for (std::vector<cmCustomCommand>::const_iterator cr =
|
|
|
|
target.GetPreLinkCommands().begin();
|
2003-06-03 18:30:23 +04:00
|
|
|
cr != target.GetPreLinkCommands().end(); ++cr)
|
|
|
|
{
|
|
|
|
if(!init)
|
|
|
|
{
|
|
|
|
fout << "\nCommandLine=\"";
|
|
|
|
init = true;
|
|
|
|
}
|
2006-09-27 21:43:46 +04:00
|
|
|
std::string script =
|
|
|
|
this->ConstructScript(cr->GetCommandLines(),
|
|
|
|
cr->GetWorkingDirectory(),
|
|
|
|
cr->GetEscapeOldStyle(),
|
|
|
|
cr->GetEscapeAllowMakeVars());
|
2005-02-22 18:32:44 +03:00
|
|
|
fout << this->EscapeForXML(script.c_str()).c_str();
|
2003-06-03 18:30:23 +04:00
|
|
|
}
|
|
|
|
if (init)
|
|
|
|
{
|
|
|
|
fout << "\"";
|
|
|
|
}
|
|
|
|
fout << "/>\n";
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2003-06-03 18:30:23 +04:00
|
|
|
// add the PostBuild rules
|
|
|
|
fout << "\t\t\t<Tool\n\t\t\t\tName=\"VCPostBuildEventTool\"";
|
|
|
|
init = false;
|
2006-03-10 21:06:26 +03:00
|
|
|
for (std::vector<cmCustomCommand>::const_iterator cr =
|
|
|
|
target.GetPostBuildCommands().begin();
|
2003-06-03 18:30:23 +04:00
|
|
|
cr != target.GetPostBuildCommands().end(); ++cr)
|
|
|
|
{
|
|
|
|
if(!init)
|
|
|
|
{
|
|
|
|
fout << "\nCommandLine=\"";
|
|
|
|
init = true;
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2006-09-27 21:43:46 +04:00
|
|
|
std::string script =
|
|
|
|
this->ConstructScript(cr->GetCommandLines(),
|
|
|
|
cr->GetWorkingDirectory(),
|
|
|
|
cr->GetEscapeOldStyle(),
|
|
|
|
cr->GetEscapeAllowMakeVars());
|
2005-02-22 18:32:44 +03:00
|
|
|
fout << this->EscapeForXML(script.c_str()).c_str();
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
if (init)
|
|
|
|
{
|
|
|
|
fout << "\"";
|
|
|
|
}
|
2003-06-03 18:30:23 +04:00
|
|
|
fout << "/>\n";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
void
|
|
|
|
cmLocalVisualStudio7Generator::WriteProjectStart(std::ostream& fout,
|
2002-09-04 23:23:56 +04:00
|
|
|
const char *libName,
|
2006-03-10 21:06:26 +03:00
|
|
|
cmTarget & target,
|
2002-09-04 23:23:56 +04:00
|
|
|
std::vector<cmSourceGroup> &)
|
|
|
|
{
|
|
|
|
fout << "<?xml version=\"1.0\" encoding = \"Windows-1252\"?>\n"
|
|
|
|
<< "<VisualStudioProject\n"
|
2003-05-09 00:59:27 +04:00
|
|
|
<< "\tProjectType=\"Visual C++\"\n";
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->Version == 71)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
|
|
|
fout << "\tVersion=\"7.10\"\n";
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
else
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
if (this->Version == 8)
|
2004-07-05 20:16:33 +04:00
|
|
|
{
|
2005-01-26 23:43:49 +03:00
|
|
|
fout << "\tVersion=\"8.00\"\n";
|
2004-07-05 20:16:33 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fout << "\tVersion=\"7.00\"\n";
|
|
|
|
}
|
2003-05-09 00:59:27 +04:00
|
|
|
}
|
2005-11-19 17:40:11 +03:00
|
|
|
const char* projLabel = target.GetProperty("PROJECT_LABEL");
|
|
|
|
if(!projLabel)
|
|
|
|
{
|
|
|
|
projLabel = libName;
|
|
|
|
}
|
|
|
|
const char* keyword = target.GetProperty("VS_KEYWORD");
|
|
|
|
if(!keyword)
|
|
|
|
{
|
|
|
|
keyword = "Win32Proj";
|
|
|
|
}
|
2005-11-22 21:37:42 +03:00
|
|
|
cmGlobalVisualStudio7Generator* gg =
|
2006-03-15 19:02:08 +03:00
|
|
|
static_cast<cmGlobalVisualStudio7Generator *>(this->GlobalGenerator);
|
2005-11-22 21:37:42 +03:00
|
|
|
fout << "\tName=\"" << projLabel << "\"\n";
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->Version == 8)
|
2005-11-22 21:37:42 +03:00
|
|
|
{
|
|
|
|
fout << "\tProjectGUID=\"{" << gg->GetGUID(libName) << "}\"\n";
|
|
|
|
}
|
|
|
|
fout << "\tSccProjectName=\"\"\n"
|
2002-09-04 23:23:56 +04:00
|
|
|
<< "\tSccLocalPath=\"\"\n"
|
2005-11-19 17:40:11 +03:00
|
|
|
<< "\tKeyword=\"" << keyword << "\">\n"
|
2002-09-04 23:23:56 +04:00
|
|
|
<< "\t<Platforms>\n"
|
2006-03-30 22:49:56 +04:00
|
|
|
<< "\t\t<Platform\n\t\t\tName=\"" << this->PlatformName << "\"/>\n"
|
2002-09-04 23:23:56 +04:00
|
|
|
<< "\t</Platforms>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmLocalVisualStudio7Generator::WriteVCProjFooter(std::ostream& fout)
|
|
|
|
{
|
|
|
|
fout << "\t<Globals>\n"
|
|
|
|
<< "\t</Globals>\n"
|
|
|
|
<< "</VisualStudioProject>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-07 22:04:16 +03:00
|
|
|
std::string cmLocalVisualStudio7Generator::EscapeForXML(const char* s)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2003-02-07 22:04:16 +03:00
|
|
|
std::string ret = s;
|
2003-08-06 00:04:53 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "&", "&");
|
2003-08-07 17:19:39 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "\"", """);
|
2003-08-06 00:04:53 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "<", "<");
|
|
|
|
cmSystemTools::ReplaceString(ret, ">", ">");
|
2005-11-17 23:57:51 +03:00
|
|
|
cmSystemTools::ReplaceString(ret, "\n", "
");
|
2002-09-04 23:23:56 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-05-12 19:56:09 +04:00
|
|
|
std::string cmLocalVisualStudio7Generator
|
|
|
|
::ConvertToXMLOutputPath(const char* path)
|
2003-02-07 22:04:16 +03:00
|
|
|
{
|
2005-02-25 02:35:36 +03:00
|
|
|
std::string ret = this->ConvertToOptionallyRelativeOutputPath(path);
|
2003-08-06 00:04:53 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "&", "&");
|
2003-08-07 17:19:39 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "\"", """);
|
2003-08-06 00:04:53 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "<", "<");
|
|
|
|
cmSystemTools::ReplaceString(ret, ">", ">");
|
2003-06-24 23:24:30 +04:00
|
|
|
return ret;
|
2003-02-07 22:04:16 +03:00
|
|
|
}
|
|
|
|
|
2006-05-12 19:56:09 +04:00
|
|
|
std::string cmLocalVisualStudio7Generator
|
|
|
|
::ConvertToXMLOutputPathSingle(const char* path)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2005-02-25 02:35:36 +03:00
|
|
|
std::string ret = this->ConvertToOptionallyRelativeOutputPath(path);
|
2002-09-04 23:23:56 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "\"", "");
|
2003-08-06 00:04:53 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "&", "&");
|
|
|
|
cmSystemTools::ReplaceString(ret, "<", "<");
|
|
|
|
cmSystemTools::ReplaceString(ret, ">", ">");
|
2002-09-04 23:23:56 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2004-05-21 00:29:09 +04:00
|
|
|
void cmLocalVisualStudio7Generator::ConfigureFinalPass()
|
|
|
|
{
|
|
|
|
cmLocalGenerator::ConfigureFinalPass();
|
2006-03-15 19:02:08 +03:00
|
|
|
cmTargets &tgts = this->Makefile->GetTargets();
|
2004-05-21 00:29:09 +04:00
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
cmGlobalVisualStudio7Generator* gg =
|
2006-03-15 19:02:08 +03:00
|
|
|
static_cast<cmGlobalVisualStudio7Generator *>(this->GlobalGenerator);
|
2004-05-21 00:29:09 +04:00
|
|
|
for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); l++)
|
|
|
|
{
|
2004-06-01 20:07:01 +04:00
|
|
|
if (strncmp(l->first.c_str(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
|
2004-09-15 20:07:57 +04:00
|
|
|
{
|
2004-06-01 20:07:01 +04:00
|
|
|
cmCustomCommand cc = l->second.GetPostBuildCommands()[0];
|
2005-02-22 18:32:44 +03:00
|
|
|
const cmCustomCommandLines& cmds = cc.GetCommandLines();
|
|
|
|
std::string project_name = cmds[0][0];
|
2004-09-15 20:07:57 +04:00
|
|
|
gg->CreateGUID(project_name.c_str());
|
2004-06-01 20:07:01 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
gg->CreateGUID(l->first.c_str());
|
2004-06-01 20:07:01 +04:00
|
|
|
}
|
2004-05-21 00:29:09 +04:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2004-05-21 00:29:09 +04:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2005-07-27 21:36:36 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2006-05-12 19:56:09 +04:00
|
|
|
std::string cmLocalVisualStudio7Generator
|
|
|
|
::GetTargetDirectory(cmTarget& target)
|
2005-07-27 21:36:36 +04:00
|
|
|
{
|
|
|
|
std::string dir;
|
|
|
|
dir += target.GetName();
|
|
|
|
dir += ".dir";
|
|
|
|
return dir;
|
|
|
|
}
|