2003-05-09 00:59:27 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2004-06-15 16:30:22 +04:00
|
|
|
#include "windows.h" // this must be first to define GetCurrentDirectory
|
2003-05-09 00:59:27 +04:00
|
|
|
#include "cmGlobalVisualStudio71Generator.h"
|
|
|
|
#include "cmLocalVisualStudio7Generator.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmake.h"
|
2004-06-15 16:30:22 +04:00
|
|
|
|
2003-05-09 00:59:27 +04:00
|
|
|
|
|
|
|
|
|
|
|
cmGlobalVisualStudio71Generator::cmGlobalVisualStudio71Generator()
|
|
|
|
{
|
|
|
|
m_FindMakeProgramFile = "CMakeVS71FindMake.cmake";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
cmLocalGenerator *cmGlobalVisualStudio71Generator::CreateLocalGenerator()
|
|
|
|
{
|
|
|
|
cmLocalVisualStudio7Generator *lg = new cmLocalVisualStudio7Generator;
|
|
|
|
lg->SetVersion71();
|
|
|
|
lg->SetGlobalGenerator(this);
|
|
|
|
return lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Write a SLN file to the stream
|
2003-11-27 00:04:01 +03:00
|
|
|
void cmGlobalVisualStudio71Generator::WriteSLNFile(std::ostream& fout,
|
2004-03-10 22:33:18 +03:00
|
|
|
cmLocalGenerator* root,
|
2003-11-27 00:04:01 +03:00
|
|
|
std::vector<cmLocalGenerator*>& generators)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
|
|
|
// Write out the header for a SLN file
|
|
|
|
this->WriteSLNHeader(fout);
|
|
|
|
|
2005-03-14 19:29:15 +03:00
|
|
|
// Get the start directory with the trailing slash
|
|
|
|
std::string rootdir = root->GetMakefile()->GetStartOutputDirectory();
|
|
|
|
rootdir += "/";
|
2003-11-27 00:04:01 +03:00
|
|
|
bool doneAllBuild = false;
|
|
|
|
bool doneRunTests = false;
|
2004-04-22 01:54:10 +04:00
|
|
|
bool doneInstall = false;
|
2003-11-27 00:04:01 +03:00
|
|
|
|
2003-05-09 00:59:27 +04:00
|
|
|
// For each cmMakefile, create a VCProj for it, and
|
|
|
|
// add it to this SLN file
|
|
|
|
unsigned int i;
|
2003-11-27 00:04:01 +03:00
|
|
|
for(i = 0; i < generators.size(); ++i)
|
2004-04-22 01:54:10 +04:00
|
|
|
{
|
2004-03-10 22:33:18 +03:00
|
|
|
if(this->IsExcluded(root, generators[i]))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2003-11-27 00:04:01 +03:00
|
|
|
cmMakefile* mf = generators[i]->GetMakefile();
|
2003-05-09 00:59:27 +04:00
|
|
|
|
|
|
|
// Get the source directory from the makefile
|
2005-03-14 19:29:15 +03:00
|
|
|
std::string dir = mf->GetStartOutputDirectory();
|
2003-05-09 00:59:27 +04:00
|
|
|
// remove the home directory and / from the source directory
|
|
|
|
// this gives a relative path
|
2005-03-14 19:29:15 +03:00
|
|
|
cmSystemTools::ReplaceString(dir, rootdir.c_str(), "");
|
2003-05-09 00:59:27 +04:00
|
|
|
|
|
|
|
// Get the list of create dsp files names from the cmVCProjWriter, more
|
|
|
|
// than one dsp could have been created per input CMakeLists.txt file
|
|
|
|
// for each target
|
|
|
|
std::vector<std::string> dspnames =
|
2003-11-27 00:04:01 +03:00
|
|
|
static_cast<cmLocalVisualStudio7Generator *>(generators[i])
|
2003-05-09 00:59:27 +04:00
|
|
|
->GetCreatedProjectNames();
|
2003-11-27 00:04:01 +03:00
|
|
|
cmTargets &tgts = generators[i]->GetMakefile()->GetTargets();
|
2003-05-09 00:59:27 +04:00
|
|
|
cmTargets::iterator l = tgts.begin();
|
|
|
|
for(std::vector<std::string>::iterator si = dspnames.begin();
|
2004-06-01 20:07:01 +04:00
|
|
|
l != tgts.end() && si != dspnames.end(); ++l)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
|
|
|
// special handling for the current makefile
|
2003-11-27 00:04:01 +03:00
|
|
|
if(mf == generators[0]->GetMakefile())
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
|
|
|
dir = "."; // no subdirectory for project generated
|
|
|
|
// if this is the special ALL_BUILD utility, then
|
|
|
|
// make it depend on every other non UTILITY project.
|
|
|
|
// This is done by adding the names to the GetUtilities
|
|
|
|
// vector on the makefile
|
2003-11-27 00:04:01 +03:00
|
|
|
if(l->first == "ALL_BUILD" && !doneAllBuild)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
|
|
|
unsigned int j;
|
2003-11-27 00:04:01 +03:00
|
|
|
for(j = 0; j < generators.size(); ++j)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTargets &atgts = generators[j]->GetMakefile()->GetTargets();
|
|
|
|
for(cmTargets::iterator al = atgts.begin();
|
2003-05-09 00:59:27 +04:00
|
|
|
al != atgts.end(); ++al)
|
|
|
|
{
|
|
|
|
if (al->second.IsInAll())
|
|
|
|
{
|
|
|
|
if (al->second.GetType() == cmTarget::UTILITY)
|
|
|
|
{
|
|
|
|
l->second.AddUtility(al->first.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
l->second.AddLinkLibrary(al->first,cmTarget::GENERAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Write the project into the SLN file
|
|
|
|
if (strncmp(l->first.c_str(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
|
|
|
|
{
|
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 = cmds[0][0];
|
|
|
|
std::string location = cmds[0][1];
|
|
|
|
this->WriteExternalProject(fout, project.c_str(), location.c_str(), cc.GetDepends());
|
2003-05-09 00:59:27 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((l->second.GetType() != cmTarget::INSTALL_FILES)
|
|
|
|
&& (l->second.GetType() != cmTarget::INSTALL_PROGRAMS))
|
2004-04-22 01:54:10 +04:00
|
|
|
{
|
2003-11-27 00:04:01 +03:00
|
|
|
bool skip = false;
|
|
|
|
if(l->first == "ALL_BUILD" )
|
|
|
|
{
|
|
|
|
if(doneAllBuild)
|
|
|
|
{
|
|
|
|
skip = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
doneAllBuild = true;
|
|
|
|
}
|
|
|
|
}
|
2004-04-22 01:54:10 +04:00
|
|
|
if(l->first == "INSTALL")
|
|
|
|
{
|
|
|
|
if(doneInstall)
|
|
|
|
{
|
|
|
|
skip = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
doneInstall = true;
|
|
|
|
}
|
|
|
|
}
|
2003-11-27 00:04:01 +03:00
|
|
|
if(l->first == "RUN_TESTS")
|
|
|
|
{
|
|
|
|
if(doneRunTests)
|
|
|
|
{
|
|
|
|
skip = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
doneRunTests = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!skip)
|
|
|
|
{
|
2005-04-29 18:11:24 +04:00
|
|
|
this->WriteProject(fout, si->c_str(), dir.c_str(),l->second);
|
2003-11-27 00:04:01 +03:00
|
|
|
}
|
2003-05-09 00:59:27 +04:00
|
|
|
++si;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fout << "Global\n"
|
|
|
|
<< "\tGlobalSection(SolutionConfiguration) = preSolution\n";
|
|
|
|
|
|
|
|
for(std::vector<std::string>::iterator i = m_Configurations.begin();
|
|
|
|
i != m_Configurations.end(); ++i)
|
|
|
|
{
|
|
|
|
fout << "\t\t" << *i << " = " << *i << "\n";
|
|
|
|
}
|
|
|
|
fout << "\tEndGlobalSection\n";
|
|
|
|
fout << "\tGlobalSection(ProjectConfiguration) = postSolution\n";
|
|
|
|
// loop over again and compute the depends
|
2003-11-27 00:04:01 +03:00
|
|
|
for(i = 0; i < generators.size(); ++i)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
2003-11-27 00:04:01 +03:00
|
|
|
cmMakefile* mf = generators[i]->GetMakefile();
|
2003-05-09 00:59:27 +04:00
|
|
|
cmLocalVisualStudio7Generator* pg =
|
2003-11-27 00:04:01 +03:00
|
|
|
static_cast<cmLocalVisualStudio7Generator*>(generators[i]);
|
2003-05-09 00:59:27 +04:00
|
|
|
// Get the list of create dsp files names from the cmVCProjWriter, more
|
|
|
|
// than one dsp could have been created per input CMakeLists.txt file
|
|
|
|
// for each target
|
|
|
|
std::vector<std::string> dspnames =
|
|
|
|
pg->GetCreatedProjectNames();
|
|
|
|
cmTargets &tgts = pg->GetMakefile()->GetTargets();
|
|
|
|
cmTargets::iterator l = tgts.begin();
|
|
|
|
std::string dir = mf->GetStartDirectory();
|
|
|
|
for(std::vector<std::string>::iterator si = dspnames.begin();
|
2004-06-01 20:07:01 +04:00
|
|
|
l != tgts.end() && si != dspnames.end(); ++l)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
2004-09-14 22:05:40 +04:00
|
|
|
if (strncmp(l->first.c_str(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
|
|
|
|
{
|
|
|
|
cmCustomCommand cc = l->second.GetPostBuildCommands()[0];
|
2005-02-22 18:32:44 +03:00
|
|
|
const cmCustomCommandLines& cmds = cc.GetCommandLines();
|
|
|
|
std::string project = cmds[0][0];
|
2004-09-15 20:07:57 +04:00
|
|
|
this->WriteProjectConfigurations(fout, project.c_str(), l->second.IsInAll());
|
2004-09-14 22:05:40 +04:00
|
|
|
}
|
|
|
|
else if ((l->second.GetType() != cmTarget::INSTALL_FILES)
|
|
|
|
&& (l->second.GetType() != cmTarget::INSTALL_PROGRAMS))
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
|
|
|
this->WriteProjectConfigurations(fout, si->c_str(), l->second.IsInAll());
|
|
|
|
++si;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fout << "\tEndGlobalSection\n";
|
|
|
|
|
|
|
|
// Write the footer for the SLN file
|
|
|
|
this->WriteSLNFooter(fout);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Write a dsp file into the SLN file,
|
|
|
|
// Note, that dependencies from executables to
|
|
|
|
// the libraries it uses are also done here
|
2005-04-29 00:21:28 +04:00
|
|
|
void
|
|
|
|
cmGlobalVisualStudio71Generator::WriteProject(std::ostream& fout,
|
|
|
|
const char* dspname,
|
|
|
|
const char* dir,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& t)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
|
|
|
std::string d = cmSystemTools::ConvertToOutputPath(dir);
|
|
|
|
fout << "Project(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \""
|
|
|
|
<< dspname << "\", \""
|
|
|
|
<< d << "\\" << dspname << ".vcproj\", \"{"
|
2004-05-21 00:29:09 +04:00
|
|
|
<< this->GetGUID(dspname) << "}\"\n";
|
2003-05-09 00:59:27 +04:00
|
|
|
fout << "\tProjectSection(ProjectDependencies) = postProject\n";
|
2005-04-29 18:11:24 +04:00
|
|
|
this->WriteProjectDepends(fout, dspname, dir, t);
|
2003-05-09 00:59:27 +04:00
|
|
|
fout << "\tEndProjectSection\n";
|
|
|
|
|
|
|
|
fout <<"EndProject\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Write a dsp file into the SLN file,
|
|
|
|
// Note, that dependencies from executables to
|
|
|
|
// the libraries it uses are also done here
|
2005-04-29 00:21:28 +04:00
|
|
|
void
|
|
|
|
cmGlobalVisualStudio71Generator
|
|
|
|
::WriteProjectDepends(std::ostream& fout,
|
|
|
|
const char* dspname,
|
2005-06-22 17:06:46 +04:00
|
|
|
const char*, cmTarget& target)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
|
|
|
// insert Begin Project Dependency Project_Dep_Name project stuff here
|
|
|
|
if (target.GetType() != cmTarget::STATIC_LIBRARY)
|
|
|
|
{
|
|
|
|
cmTarget::LinkLibraries::const_iterator j, jend;
|
|
|
|
j = target.GetLinkLibraries().begin();
|
|
|
|
jend = target.GetLinkLibraries().end();
|
|
|
|
for(;j!= jend; ++j)
|
|
|
|
{
|
|
|
|
if(j->first != dspname)
|
|
|
|
{
|
|
|
|
// is the library part of this SLN ? If so add dependency
|
|
|
|
std::string libPath = j->first + "_CMAKE_PATH";
|
|
|
|
const char* cacheValue
|
|
|
|
= m_CMakeInstance->GetCacheDefinition(libPath.c_str());
|
2003-12-18 21:17:36 +03:00
|
|
|
if(cacheValue && *cacheValue)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
2004-05-21 00:29:09 +04:00
|
|
|
fout << "\t\t{" << this->GetGUID(j->first.c_str()) << "} = {"
|
|
|
|
<< this->GetGUID(j->first.c_str()) << "}\n";
|
2003-05-09 00:59:27 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::set<cmStdString>::const_iterator i, end;
|
|
|
|
// write utility dependencies.
|
|
|
|
i = target.GetUtilities().begin();
|
|
|
|
end = target.GetUtilities().end();
|
|
|
|
for(;i!= end; ++i)
|
|
|
|
{
|
|
|
|
if(*i != dspname)
|
|
|
|
{
|
2004-09-14 22:05:40 +04:00
|
|
|
std::string name = i->c_str();
|
|
|
|
if(strncmp(name.c_str(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
|
2004-09-15 20:07:57 +04:00
|
|
|
{
|
|
|
|
// kind of weird removing the first 27 letters.
|
|
|
|
// my recommendatsions:
|
|
|
|
// use cmCustomCommand::GetCommand() to get the project name
|
|
|
|
// or get rid of the target name starting with "INCLUDE_EXTERNAL_MSPROJECT_" and use another
|
|
|
|
// indicator/flag somewhere. These external project names shouldn't conflict with cmake
|
|
|
|
// target names anyways.
|
2004-09-14 22:05:40 +04:00
|
|
|
name.erase(name.begin(), name.begin() + 27);
|
2004-09-15 20:07:57 +04:00
|
|
|
}
|
2005-04-05 18:22:18 +04:00
|
|
|
std::string guid = this->GetGUID(name.c_str());
|
|
|
|
if(guid.size() == 0)
|
|
|
|
{
|
|
|
|
std::string m = "Target: ";
|
|
|
|
m += target.GetName();
|
|
|
|
m += " depends on unknown target: ";
|
|
|
|
m += name;
|
|
|
|
cmSystemTools::Error(m.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
fout << "\t\t{" << guid << "} = {" << guid << "}\n";
|
2003-05-09 00:59:27 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-15 23:15:46 +04:00
|
|
|
// Write a dsp file into the SLN file,
|
|
|
|
// Note, that dependencies from executables to
|
|
|
|
// the libraries it uses are also done here
|
|
|
|
void cmGlobalVisualStudio71Generator::WriteExternalProject(std::ostream& fout,
|
|
|
|
const char* name,
|
|
|
|
const char* location,
|
|
|
|
const std::vector<std::string>& depends)
|
|
|
|
{
|
|
|
|
std::string d = cmSystemTools::ConvertToOutputPath(location);
|
|
|
|
fout << "Project(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \""
|
|
|
|
<< name << "\", \""
|
|
|
|
<< d << "\", \"{"
|
|
|
|
<< this->GetGUID(name)
|
|
|
|
<< "}\"\n";
|
|
|
|
|
|
|
|
// write out the dependencies here
|
|
|
|
// VS 7.1 includes dependencies with the project instead of in the global section
|
|
|
|
if(!depends.empty())
|
|
|
|
{
|
|
|
|
fout << "\tProjectSection(ProjectDependencies) = postProject\n";
|
|
|
|
std::vector<std::string>::const_iterator it;
|
|
|
|
for(it = depends.begin(); it != depends.end(); ++it)
|
|
|
|
{
|
|
|
|
if(it->size() > 0)
|
|
|
|
{
|
|
|
|
fout << "\t\t{"
|
|
|
|
<< this->GetGUID(it->c_str())
|
|
|
|
<< "} = {"
|
|
|
|
<< this->GetGUID(it->c_str())
|
|
|
|
<< "}\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fout << "\tEndProjectSection\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
fout << "EndProject\n";
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-05-09 00:59:27 +04:00
|
|
|
|
|
|
|
// Write a dsp file into the SLN file,
|
|
|
|
// Note, that dependencies from executables to
|
|
|
|
// the libraries it uses are also done here
|
|
|
|
void
|
|
|
|
cmGlobalVisualStudio71Generator::WriteProjectConfigurations(std::ostream& fout,
|
|
|
|
const char* name,
|
|
|
|
bool in_all_build)
|
|
|
|
{
|
2004-05-21 00:29:09 +04:00
|
|
|
std::string guid = this->GetGUID(name);
|
2003-05-09 00:59:27 +04:00
|
|
|
for(std::vector<std::string>::iterator i = m_Configurations.begin();
|
|
|
|
i != m_Configurations.end(); ++i)
|
|
|
|
{
|
|
|
|
fout << "\t\t{" << guid << "}." << *i << ".ActiveCfg = " << *i << "|Win32\n";
|
|
|
|
if (in_all_build)
|
|
|
|
{
|
|
|
|
fout << "\t\t{" << guid << "}." << *i << ".Build.0 = " << *i << "|Win32\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Standard end of dsw file
|
|
|
|
void cmGlobalVisualStudio71Generator::WriteSLNFooter(std::ostream& fout)
|
|
|
|
{
|
|
|
|
fout << "\tGlobalSection(ExtensibilityGlobals) = postSolution\n"
|
|
|
|
<< "\tEndGlobalSection\n"
|
|
|
|
<< "\tGlobalSection(ExtensibilityAddIns) = postSolution\n"
|
|
|
|
<< "\tEndGlobalSection\n"
|
|
|
|
<< "EndGlobal\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ouput standard header for dsw file
|
|
|
|
void cmGlobalVisualStudio71Generator::WriteSLNHeader(std::ostream& fout)
|
|
|
|
{
|
|
|
|
fout << "Microsoft Visual Studio Solution File, Format Version 8.00\n";
|
|
|
|
}
|
|
|
|
|
2003-07-08 05:52:10 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmGlobalVisualStudio71Generator::GetDocumentation(cmDocumentationEntry& entry) const
|
|
|
|
{
|
|
|
|
entry.name = this->GetName();
|
|
|
|
entry.brief = "Generates Visual Studio .NET 2003 project files.";
|
|
|
|
entry.full = "";
|
|
|
|
}
|