2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2003-05-09 00:59:27 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2003-05-09 00:59:27 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2004-06-15 16:30:22 +04:00
|
|
|
#include "windows.h" // this must be first to define GetCurrentDirectory
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2003-05-09 00:59:27 +04:00
|
|
|
#include "cmGlobalVisualStudio71Generator.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include "cmGeneratorTarget.h"
|
2003-05-09 00:59:27 +04:00
|
|
|
#include "cmLocalVisualStudio7Generator.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmake.h"
|
2004-06-15 16:30:22 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmGlobalVisualStudio71Generator::cmGlobalVisualStudio71Generator(
|
|
|
|
cmake* cm, const std::string& platformName)
|
2015-05-24 12:31:14 +03:00
|
|
|
: cmGlobalVisualStudio7Generator(cm, platformName)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ProjectConfigurationSectionName = "ProjectConfiguration";
|
2015-05-17 12:33:09 +03:00
|
|
|
this->Version = VS71;
|
2003-05-09 00:59:27 +04:00
|
|
|
}
|
|
|
|
|
2008-02-15 19:49:58 +03:00
|
|
|
std::string cmGlobalVisualStudio71Generator::GetUserMacrosDirectory()
|
|
|
|
{
|
|
|
|
// Macros not supported on Visual Studio 7.1 and earlier because
|
|
|
|
// they do not appear to work *during* a build when called by an
|
|
|
|
// outside agent...
|
|
|
|
//
|
|
|
|
return "";
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
//
|
|
|
|
// The COM result from calling a Visual Studio macro with 7.1 indicates
|
|
|
|
// that the call succeeds, but the macro does not appear to execute...
|
|
|
|
//
|
|
|
|
// So, I am leaving this code here to show how to do it, but have not
|
|
|
|
// yet figured out what the issue is in terms of why the macro does not
|
|
|
|
// appear to execute...
|
|
|
|
//
|
|
|
|
std::string base;
|
|
|
|
std::string path;
|
|
|
|
|
|
|
|
// base begins with the VisualStudioProjectsLocation reg value...
|
|
|
|
if (cmSystemTools::ReadRegistryValue(
|
|
|
|
"HKEY_CURRENT_USER\\Software\\Microsoft\\VisualStudio\\7.1;"
|
|
|
|
"VisualStudioProjectsLocation",
|
|
|
|
base))
|
|
|
|
{
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(base);
|
|
|
|
|
|
|
|
// 7.1 macros folder:
|
|
|
|
path = base + "/VSMacros71";
|
|
|
|
}
|
|
|
|
|
|
|
|
// path is (correctly) still empty if we did not read the base value from
|
|
|
|
// the Registry value
|
|
|
|
return path;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string cmGlobalVisualStudio71Generator::GetUserMacrosRegKeyBase()
|
|
|
|
{
|
|
|
|
// Macros not supported on Visual Studio 7.1 and earlier because
|
|
|
|
// they do not appear to work *during* a build when called by an
|
|
|
|
// outside agent...
|
|
|
|
//
|
|
|
|
return "";
|
2008-01-30 20:04:38 +03:00
|
|
|
|
2008-02-15 19:49:58 +03:00
|
|
|
#if 0
|
|
|
|
return "Software\\Microsoft\\VisualStudio\\7.1\\vsmacros";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmGlobalVisualStudio71Generator::WriteSLNFile(
|
|
|
|
std::ostream& fout, cmLocalGenerator* root,
|
|
|
|
std::vector<cmLocalGenerator*>& generators)
|
2012-08-13 21:42:58 +04:00
|
|
|
{
|
2015-05-20 20:55:21 +03:00
|
|
|
std::vector<std::string> configs;
|
|
|
|
root->GetMakefile()->GetConfigurations(configs);
|
|
|
|
|
2003-05-09 00:59:27 +04:00
|
|
|
// Write out the header for a SLN file
|
|
|
|
this->WriteSLNHeader(fout);
|
2009-10-01 18:26:54 +04:00
|
|
|
|
|
|
|
// Collect all targets under this root generator and the transitive
|
|
|
|
// closure of their dependencies.
|
|
|
|
TargetDependSet projectTargets;
|
|
|
|
TargetDependSet originalTargets;
|
|
|
|
this->GetTargetSets(projectTargets, originalTargets, root, generators);
|
2016-03-17 23:12:02 +03:00
|
|
|
OrderedTargetDependSet orderedProjectTargets(
|
|
|
|
projectTargets, this->GetStartupProjectName(root));
|
2009-10-01 18:26:54 +04:00
|
|
|
|
2016-03-21 23:01:20 +03:00
|
|
|
// Generate the targets specification to a string. We will put this in
|
|
|
|
// the actual .sln file later. As a side effect, this method also
|
|
|
|
// populates the set of folders.
|
|
|
|
std::ostringstream targetsSlnString;
|
|
|
|
this->WriteTargetsToSolution(targetsSlnString, root, orderedProjectTargets);
|
|
|
|
|
|
|
|
// VS 7 does not support folders specified first.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->GetVersion() <= VS71) {
|
2016-03-21 23:01:20 +03:00
|
|
|
fout << targetsSlnString.str();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2010-09-03 21:53:22 +04:00
|
|
|
|
2016-03-21 23:01:20 +03:00
|
|
|
// Generate folder specification.
|
2010-09-03 21:53:22 +04:00
|
|
|
bool useFolderProperty = this->UseFolderProperty();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (useFolderProperty) {
|
2010-09-03 21:53:22 +04:00
|
|
|
this->WriteFolders(fout);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2010-09-03 21:53:22 +04:00
|
|
|
|
2016-03-21 23:01:20 +03:00
|
|
|
// Now write the actual target specification content.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->GetVersion() > VS71) {
|
2016-03-21 23:01:20 +03:00
|
|
|
fout << targetsSlnString.str();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-03-21 23:01:20 +03:00
|
|
|
|
2008-01-30 20:04:38 +03:00
|
|
|
// Write out the configurations information for the solution
|
2006-02-14 23:35:34 +03:00
|
|
|
fout << "Global\n";
|
2008-01-30 20:04:38 +03:00
|
|
|
// Write out the configurations for the solution
|
2015-05-20 20:55:21 +03:00
|
|
|
this->WriteSolutionConfigurations(fout, configs);
|
2006-03-15 19:02:08 +03:00
|
|
|
fout << "\tGlobalSection(" << this->ProjectConfigurationSectionName
|
2006-02-14 23:35:34 +03:00
|
|
|
<< ") = postSolution\n";
|
2008-01-30 20:04:38 +03:00
|
|
|
// Write out the configurations for all the targets in the project
|
2015-05-20 20:55:21 +03:00
|
|
|
this->WriteTargetConfigurations(fout, configs, orderedProjectTargets);
|
2003-05-09 00:59:27 +04:00
|
|
|
fout << "\tEndGlobalSection\n";
|
2010-09-03 21:53:22 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (useFolderProperty) {
|
2010-09-03 21:53:22 +04:00
|
|
|
// Write out project folders
|
|
|
|
fout << "\tGlobalSection(NestedProjects) = preSolution\n";
|
|
|
|
this->WriteFoldersContent(fout);
|
|
|
|
fout << "\tEndGlobalSection\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2010-09-03 21:53:22 +04:00
|
|
|
|
2012-10-15 00:10:49 +04:00
|
|
|
// Write out global sections
|
|
|
|
this->WriteSLNGlobalSections(fout, root);
|
|
|
|
|
2003-05-09 00:59:27 +04:00
|
|
|
// Write the footer for the SLN file
|
|
|
|
this->WriteSLNFooter(fout);
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmGlobalVisualStudio71Generator::WriteSolutionConfigurations(
|
|
|
|
std::ostream& fout, std::vector<std::string> const& configs)
|
2006-02-14 23:35:34 +03:00
|
|
|
{
|
|
|
|
fout << "\tGlobalSection(SolutionConfiguration) = preSolution\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator i = configs.begin();
|
|
|
|
i != configs.end(); ++i) {
|
2006-02-14 23:35:34 +03:00
|
|
|
fout << "\t\t" << *i << " = " << *i << "\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-02-14 23:35:34 +03:00
|
|
|
fout << "\tEndGlobalSection\n";
|
|
|
|
}
|
|
|
|
|
2003-05-09 00:59:27 +04:00
|
|
|
// Write a dsp file into the SLN file,
|
2012-08-13 21:42:58 +04:00
|
|
|
// Note, that dependencies from executables to
|
2003-05-09 00:59:27 +04:00
|
|
|
// the libraries it uses are also done here
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmGlobalVisualStudio71Generator::WriteProject(std::ostream& fout,
|
|
|
|
const std::string& dspname,
|
|
|
|
const char* dir,
|
|
|
|
cmGeneratorTarget const* t)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
2008-04-30 21:26:04 +04:00
|
|
|
// check to see if this is a fortran build
|
|
|
|
const char* ext = ".vcproj";
|
2012-08-13 21:42:58 +04:00
|
|
|
const char* project =
|
2008-10-01 17:04:27 +04:00
|
|
|
"Project(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->TargetIsFortranOnly(t)) {
|
2012-08-13 21:42:58 +04:00
|
|
|
ext = ".vfproj";
|
2008-04-30 21:26:04 +04:00
|
|
|
project = "Project(\"{6989167D-11E4-40FE-8C1A-2192A86A7E90}\") = \"";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-10-23 19:26:42 +03:00
|
|
|
const char* targetExt = t->GetProperty("GENERATOR_FILE_NAME_EXT");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (targetExt) {
|
2009-06-26 00:41:57 +04:00
|
|
|
ext = targetExt;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-06-26 00:41:57 +04:00
|
|
|
|
2010-08-25 02:47:56 +04:00
|
|
|
std::string guid = this->GetGUID(dspname);
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << project << dspname << "\", \"" << this->ConvertToSolutionPath(dir)
|
|
|
|
<< (dir[0] ? "\\" : "") << dspname << ext << "\", \"{" << guid
|
|
|
|
<< "}\"\n";
|
2003-05-09 00:59:27 +04:00
|
|
|
fout << "\tProjectSection(ProjectDependencies) = postProject\n";
|
2015-10-23 19:26:44 +03:00
|
|
|
this->WriteProjectDepends(fout, dspname, dir, t);
|
2003-05-09 00:59:27 +04:00
|
|
|
fout << "\tEndProjectSection\n";
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "EndProject\n";
|
2010-08-25 02:47:56 +04:00
|
|
|
|
2015-10-23 19:26:46 +03:00
|
|
|
UtilityDependsMap::iterator ui = this->UtilityDepends.find(t);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (ui != this->UtilityDepends.end()) {
|
2010-08-25 02:47:56 +04:00
|
|
|
const char* uname = ui->second.c_str();
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2010-08-25 02:47:56 +04:00
|
|
|
fout << "Project(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \""
|
|
|
|
<< uname << "\", \""
|
2010-12-20 19:56:18 +03:00
|
|
|
<< this->ConvertToSolutionPath(dir) << (dir[0]? "\\":"")
|
|
|
|
<< uname << ".vcproj" << "\", \"{"
|
2010-08-25 02:47:56 +04:00
|
|
|
<< this->GetGUID(uname) << "}\"\n"
|
|
|
|
<< "\tProjectSection(ProjectDependencies) = postProject\n"
|
|
|
|
<< "\t\t{" << guid << "} = {" << guid << "}\n"
|
|
|
|
<< "\tEndProjectSection\n"
|
|
|
|
<< "EndProject\n";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2003-05-09 00:59:27 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write a dsp file into the SLN file,
|
2012-08-13 21:42:58 +04:00
|
|
|
// Note, that dependencies from executables to
|
2003-05-09 00:59:27 +04:00
|
|
|
// the libraries it uses are also done here
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmGlobalVisualStudio71Generator::WriteProjectDepends(
|
|
|
|
std::ostream& fout, const std::string&, const char*,
|
|
|
|
cmGeneratorTarget const* target)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
2015-10-23 19:26:45 +03:00
|
|
|
VSDependSet const& depends = this->VSTargetDepends[target];
|
2016-05-16 17:34:04 +03:00
|
|
|
for (VSDependSet::const_iterator di = depends.begin(); di != depends.end();
|
|
|
|
++di) {
|
2010-08-25 02:39:36 +04:00
|
|
|
const char* name = di->c_str();
|
|
|
|
std::string guid = this->GetGUID(name);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (guid.empty()) {
|
2010-08-25 02:39:36 +04:00
|
|
|
std::string m = "Target: ";
|
2015-10-23 19:26:44 +03:00
|
|
|
m += target->GetName();
|
2010-08-25 02:39:36 +04:00
|
|
|
m += " depends on unknown target: ";
|
|
|
|
m += name;
|
|
|
|
cmSystemTools::Error(m.c_str());
|
2003-05-09 00:59:27 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "\t\t{" << guid << "} = {" << guid << "}\n";
|
|
|
|
}
|
2003-05-09 00:59:27 +04:00
|
|
|
}
|
|
|
|
|
2006-05-11 19:47:03 +04:00
|
|
|
// Write a dsp file into the SLN file, Note, that dependencies from
|
|
|
|
// executables to the libraries it uses are also done here
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmGlobalVisualStudio71Generator::WriteExternalProject(
|
|
|
|
std::ostream& fout, const std::string& name, const char* location,
|
|
|
|
const char* typeGuid, const std::set<std::string>& depends)
|
2012-08-13 21:42:58 +04:00
|
|
|
{
|
2012-04-16 18:07:19 +04:00
|
|
|
fout << "Project(\"{"
|
2013-12-20 01:39:19 +04:00
|
|
|
<< (typeGuid ? typeGuid : this->ExternalProjectType(location))
|
2016-05-16 17:34:04 +03:00
|
|
|
<< "}\") = \"" << name << "\", \""
|
2006-10-10 05:48:48 +04:00
|
|
|
<< this->ConvertToSolutionPath(location) << "\", \"{"
|
2016-05-16 17:34:04 +03:00
|
|
|
<< this->GetGUID(name) << "}\"\n";
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2006-05-11 19:47:03 +04:00
|
|
|
// write out the dependencies here VS 7.1 includes dependencies with the
|
|
|
|
// project instead of in the global section
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!depends.empty()) {
|
2004-09-15 23:15:46 +04:00
|
|
|
fout << "\tProjectSection(ProjectDependencies) = postProject\n";
|
2014-02-10 09:21:34 +04:00
|
|
|
std::set<std::string>::const_iterator it;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (it = depends.begin(); it != depends.end(); ++it) {
|
|
|
|
if (!it->empty()) {
|
|
|
|
fout << "\t\t{" << this->GetGUID(it->c_str()) << "} = {"
|
|
|
|
<< this->GetGUID(it->c_str()) << "}\n";
|
2004-09-15 23:15:46 +04:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "\tEndProjectSection\n";
|
|
|
|
}
|
2004-09-15 23:15:46 +04:00
|
|
|
|
|
|
|
fout << "EndProject\n";
|
|
|
|
}
|
|
|
|
|
2006-05-11 19:47:03 +04:00
|
|
|
// Write a dsp file into the SLN file, Note, that dependencies from
|
|
|
|
// executables to the libraries it uses are also done here
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmGlobalVisualStudio71Generator::WriteProjectConfigurations(
|
2015-10-08 01:21:51 +03:00
|
|
|
std::ostream& fout, const std::string& name, cmState::TargetType,
|
2015-05-20 20:55:21 +03:00
|
|
|
std::vector<std::string> const& configs,
|
2012-10-11 23:57:22 +04:00
|
|
|
const std::set<std::string>& configsPartOfDefaultBuild,
|
2014-02-25 02:36:27 +04:00
|
|
|
std::string const& platformMapping)
|
2003-05-09 00:59:27 +04:00
|
|
|
{
|
2014-02-25 02:36:27 +04:00
|
|
|
const std::string& platformName =
|
|
|
|
!platformMapping.empty() ? platformMapping : this->GetPlatformName();
|
2004-05-21 00:29:09 +04:00
|
|
|
std::string guid = this->GetGUID(name);
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator i = configs.begin();
|
|
|
|
i != configs.end(); ++i) {
|
|
|
|
fout << "\t\t{" << guid << "}." << *i << ".ActiveCfg = " << *i << "|"
|
|
|
|
<< platformName << std::endl;
|
|
|
|
std::set<std::string>::const_iterator ci =
|
|
|
|
configsPartOfDefaultBuild.find(*i);
|
|
|
|
if (!(ci == configsPartOfDefaultBuild.end())) {
|
|
|
|
fout << "\t\t{" << guid << "}." << *i << ".Build.0 = " << *i << "|"
|
|
|
|
<< platformName << std::endl;
|
2003-05-09 00:59:27 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2003-05-09 00:59:27 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ouput standard header for dsw file
|
|
|
|
void cmGlobalVisualStudio71Generator::WriteSLNHeader(std::ostream& fout)
|
|
|
|
{
|
|
|
|
fout << "Microsoft Visual Studio Solution File, Format Version 8.00\n";
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmGlobalVisualStudio71Generator::GetDocumentation(
|
|
|
|
cmDocumentationEntry& entry)
|
2003-07-08 05:52:10 +04:00
|
|
|
{
|
2012-11-19 19:42:24 +04:00
|
|
|
entry.Name = cmGlobalVisualStudio71Generator::GetActualName();
|
2016-04-28 17:09:15 +03:00
|
|
|
entry.Brief = "Deprecated. Generates Visual Studio .NET 2003 project files.";
|
2003-07-08 05:52:10 +04:00
|
|
|
}
|