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
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmGlobalVisualStudio6Generator.h"
|
|
|
|
#include "cmLocalVisualStudio6Generator.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmake.h"
|
|
|
|
|
2002-12-05 21:44:11 +03:00
|
|
|
cmGlobalVisualStudio6Generator::cmGlobalVisualStudio6Generator()
|
|
|
|
{
|
|
|
|
m_FindMakeProgramFile = "CMakeVS6FindMake.cmake";
|
|
|
|
}
|
|
|
|
|
2004-08-27 16:41:07 +04:00
|
|
|
void cmGlobalVisualStudio6Generator::EnableLanguage(std::vector<std::string>const& lang,
|
2002-09-04 23:23:56 +04:00
|
|
|
cmMakefile *mf)
|
|
|
|
{
|
2002-12-06 23:35:22 +03:00
|
|
|
mf->AddDefinition("CMAKE_CFG_INTDIR","$(IntDir)");
|
2002-12-06 18:02:19 +03:00
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_CC", "cl");
|
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_CXX", "cl");
|
2004-09-15 19:31:54 +04:00
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_RC", "rc");
|
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_NO_COMPILER_ENV", "1");
|
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_Fortran", "ifort");
|
2002-12-20 20:59:18 +03:00
|
|
|
this->GenerateConfigurations(mf);
|
2002-12-05 21:44:11 +03:00
|
|
|
this->cmGlobalGenerator::EnableLanguage(lang, mf);
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2002-12-20 20:59:18 +03:00
|
|
|
void cmGlobalVisualStudio6Generator::GenerateConfigurations(cmMakefile* mf)
|
|
|
|
{
|
2004-08-12 00:57:27 +04:00
|
|
|
std::string fname= mf->GetRequiredDefinition("CMAKE_ROOT");
|
2002-12-20 20:59:18 +03:00
|
|
|
const char* def= mf->GetDefinition( "MSPROJECT_TEMPLATE_DIRECTORY");
|
|
|
|
if(def)
|
|
|
|
{
|
|
|
|
fname = def;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fname += "/Templates";
|
|
|
|
}
|
|
|
|
fname += "/CMakeVisualStudio6Configurations.cmake";
|
|
|
|
if(!mf->ReadListFile(mf->GetCurrentListFile(), fname.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Cannot open ", fname.c_str(),
|
|
|
|
". Please copy this file from the main "
|
|
|
|
"CMake/Templates directory and edit it for "
|
|
|
|
"your build configurations.");
|
|
|
|
}
|
|
|
|
else if(!mf->GetDefinition("CMAKE_CONFIGURATION_TYPES"))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("CMAKE_CONFIGURATION_TYPES not set by ",
|
|
|
|
fname.c_str(),
|
|
|
|
". Please copy this file from the main "
|
|
|
|
"CMake/Templates directory and edit it for "
|
|
|
|
"your build configurations.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-29 19:49:18 +04:00
|
|
|
std::string cmGlobalVisualStudio6Generator::GenerateBuildCommand(const char* makeProgram,
|
2005-12-01 19:41:00 +03:00
|
|
|
const char *projectName, const char* additionalOptions, const char *targetName,
|
|
|
|
const char* config, bool ignoreErrors)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2005-04-29 19:49:18 +04:00
|
|
|
// Ingoring errors is not implemented in visual studio 6
|
|
|
|
(void) ignoreErrors;
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// now build the test
|
2003-01-22 17:28:53 +03:00
|
|
|
std::vector<std::string> mp;
|
|
|
|
mp.push_back("[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\6.0\\Setup;VsCommonDir]/MSDev98/Bin");
|
|
|
|
cmSystemTools::ExpandRegistryValues(mp[0]);
|
2005-04-29 02:18:54 +04:00
|
|
|
std::string originalCommand = makeProgram;
|
2005-02-22 17:12:10 +03:00
|
|
|
std::string makeCommand =
|
2005-04-29 02:18:54 +04:00
|
|
|
cmSystemTools::FindProgram(makeProgram, mp);
|
2002-09-04 23:23:56 +04:00
|
|
|
if(makeCommand.size() == 0)
|
|
|
|
{
|
2003-03-14 23:06:56 +03:00
|
|
|
std::string e = "Generator cannot find Visual Studio 6 msdev program \"";
|
2003-01-22 17:28:53 +03:00
|
|
|
e += originalCommand;
|
|
|
|
e += "\" specified by CMAKE_MAKE_PROGRAM cache entry. ";
|
|
|
|
e += "Please fix the setting.";
|
|
|
|
cmSystemTools::Error(e.c_str());
|
2005-04-29 02:18:54 +04:00
|
|
|
return "";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
makeCommand = cmSystemTools::ConvertToOutputPath(makeCommand.c_str());
|
|
|
|
|
|
|
|
// if there are spaces in the makeCommand, assume a full path
|
|
|
|
// and convert it to a path with no spaces in it as the
|
2003-08-04 06:34:37 +04:00
|
|
|
// RunSingleCommand does not like spaces
|
2002-09-04 23:23:56 +04:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
if(makeCommand.find(' ') != std::string::npos)
|
|
|
|
{
|
|
|
|
cmSystemTools::GetShortPath(makeCommand.c_str(), makeCommand);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
makeCommand += " ";
|
|
|
|
makeCommand += projectName;
|
2002-09-11 00:49:40 +04:00
|
|
|
makeCommand += ".dsw /MAKE \"";
|
2005-04-29 02:18:54 +04:00
|
|
|
bool clean = false;
|
|
|
|
if ( targetName && strcmp(targetName, "clean") == 0 )
|
|
|
|
{
|
|
|
|
clean = true;
|
|
|
|
targetName = "ALL_BUILD";
|
|
|
|
}
|
2005-02-23 22:36:38 +03:00
|
|
|
if (targetName && strlen(targetName))
|
2002-09-11 00:49:40 +04:00
|
|
|
{
|
|
|
|
makeCommand += targetName;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
makeCommand += "ALL_BUILD";
|
|
|
|
}
|
2003-11-12 22:06:02 +03:00
|
|
|
makeCommand += " - ";
|
2005-02-23 22:36:38 +03:00
|
|
|
if(config && strlen(config))
|
2003-11-12 22:06:02 +03:00
|
|
|
{
|
2004-08-05 00:33:10 +04:00
|
|
|
makeCommand += config;
|
2003-11-12 22:06:02 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
makeCommand += "Debug";
|
|
|
|
}
|
2005-02-22 17:12:10 +03:00
|
|
|
if(clean)
|
|
|
|
{
|
2005-04-29 02:18:54 +04:00
|
|
|
makeCommand += "\" /CLEAN";
|
2005-02-22 17:12:10 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
makeCommand += "\" /BUILD";
|
|
|
|
}
|
2005-12-01 19:41:00 +03:00
|
|
|
if ( additionalOptions )
|
|
|
|
{
|
|
|
|
makeCommand += " ";
|
|
|
|
makeCommand += additionalOptions;
|
|
|
|
}
|
2005-04-29 02:18:54 +04:00
|
|
|
return makeCommand;
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
cmLocalGenerator *cmGlobalVisualStudio6Generator::CreateLocalGenerator()
|
|
|
|
{
|
|
|
|
cmLocalGenerator *lg = new cmLocalVisualStudio6Generator;
|
|
|
|
lg->SetGlobalGenerator(this);
|
|
|
|
return lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmGlobalVisualStudio6Generator::Generate()
|
|
|
|
{
|
|
|
|
// add a special target that depends on ALL projects for easy build
|
2005-02-22 18:32:44 +03:00
|
|
|
// of one configuration only.
|
|
|
|
const char* no_output = 0;
|
|
|
|
std::vector<std::string> no_depends;
|
2006-02-08 18:58:36 +03:00
|
|
|
const char* no_working_dir = 0;
|
2003-11-26 22:29:53 +03:00
|
|
|
std::map<cmStdString, std::vector<cmLocalGenerator*> >::iterator it;
|
2005-01-21 20:26:32 +03:00
|
|
|
for(it = m_ProjectMap.begin(); it!= m_ProjectMap.end(); ++it)
|
2003-11-26 22:29:53 +03:00
|
|
|
{
|
|
|
|
std::vector<cmLocalGenerator*>& gen = it->second;
|
|
|
|
// add the ALL_BUILD to the first local generator of each project
|
|
|
|
if(gen.size())
|
|
|
|
{
|
|
|
|
gen[0]->GetMakefile()->
|
2006-02-08 18:58:36 +03:00
|
|
|
AddUtilityCommand("ALL_BUILD", false, no_output, no_depends, no_working_dir,
|
2005-02-22 18:32:44 +03:00
|
|
|
"echo", "Build all projects");
|
2004-04-15 21:09:24 +04:00
|
|
|
std::string cmake_command =
|
2004-08-12 00:57:27 +04:00
|
|
|
m_LocalGenerators[0]->GetMakefile()->GetRequiredDefinition("CMAKE_COMMAND");
|
2004-04-15 21:09:24 +04:00
|
|
|
gen[0]->GetMakefile()->
|
2006-02-08 18:58:36 +03:00
|
|
|
AddUtilityCommand("INSTALL", false, no_output, no_depends, no_working_dir,
|
2005-02-22 18:32:44 +03:00
|
|
|
cmake_command.c_str(),
|
|
|
|
"-DBUILD_TYPE=$(IntDir)", "-P", "cmake_install.cmake");
|
2005-04-29 18:11:24 +04:00
|
|
|
|
|
|
|
// Make the INSTALL target depend on ALL_BUILD unless the
|
|
|
|
// project says to not do so.
|
|
|
|
const char* noall =
|
|
|
|
gen[0]->GetMakefile()
|
|
|
|
->GetDefinition("CMAKE_SKIP_INSTALL_ALL_DEPENDENCY");
|
|
|
|
if(!noall || cmSystemTools::IsOff(noall))
|
|
|
|
{
|
|
|
|
cmTarget* install = gen[0]->GetMakefile()->FindTarget("INSTALL");
|
|
|
|
install->AddUtility("ALL_BUILD");
|
|
|
|
}
|
2003-11-26 22:29:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// add the Run Tests command
|
|
|
|
this->SetupTests();
|
|
|
|
|
|
|
|
// first do the superclass method
|
|
|
|
this->cmGlobalGenerator::Generate();
|
|
|
|
|
|
|
|
// Now write out the DSW
|
|
|
|
this->OutputDSWFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write a DSW file to the stream
|
2003-11-26 22:29:53 +03:00
|
|
|
void cmGlobalVisualStudio6Generator::WriteDSWFile(std::ostream& fout,
|
2004-03-10 00:28:44 +03:00
|
|
|
cmLocalGenerator* root,
|
2003-11-26 22:29:53 +03:00
|
|
|
std::vector<cmLocalGenerator*>& generators)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
// Write out the header for a DSW file
|
|
|
|
this->WriteDSWHeader(fout);
|
|
|
|
|
|
|
|
// Get the home directory with the trailing slash
|
2005-03-14 19:29:15 +03:00
|
|
|
std::string homedir = root->GetMakefile()->GetStartOutputDirectory();
|
2002-09-04 23:23:56 +04:00
|
|
|
homedir += "/";
|
|
|
|
|
2002-09-08 05:26:08 +04:00
|
|
|
unsigned int i;
|
2003-11-26 22:29:53 +03:00
|
|
|
bool doneAllBuild = false;
|
|
|
|
bool doneRunTests = false;
|
2004-04-15 21:09:24 +04:00
|
|
|
bool doneInstall = false;
|
2004-03-10 00:28:44 +03:00
|
|
|
|
2003-11-26 22:29:53 +03:00
|
|
|
for(i = 0; i < generators.size(); ++i)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2004-03-10 00:28:44 +03:00
|
|
|
if(this->IsExcluded(root, generators[i]))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2003-11-26 22:29:53 +03:00
|
|
|
cmMakefile* mf = generators[i]->GetMakefile();
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
// Get the source directory from the makefile
|
2005-03-14 19:29:15 +03:00
|
|
|
std::string dir = mf->GetStartOutputDirectory();
|
2002-09-04 23:23:56 +04:00
|
|
|
// remove the home directory and / from the source directory
|
|
|
|
// this gives a relative path
|
|
|
|
cmSystemTools::ReplaceString(dir, homedir.c_str(), "");
|
|
|
|
|
|
|
|
// Get the list of create dsp files names from the LocalGenerator, more
|
|
|
|
// than one dsp could have been created per input CMakeLists.txt file
|
|
|
|
// for each target
|
|
|
|
std::vector<std::string> dspnames =
|
2003-11-26 22:29:53 +03:00
|
|
|
static_cast<cmLocalVisualStudio6Generator *>(generators[i])
|
2002-09-04 23:23:56 +04:00
|
|
|
->GetCreatedProjectNames();
|
2003-11-26 22:29:53 +03:00
|
|
|
cmTargets &tgts = generators[i]->GetMakefile()->GetTargets();
|
2002-09-04 23:23:56 +04:00
|
|
|
cmTargets::iterator l = tgts.begin();
|
|
|
|
for(std::vector<std::string>::iterator si = dspnames.begin();
|
|
|
|
l != tgts.end(); ++l)
|
|
|
|
{
|
|
|
|
// special handling for the current makefile
|
2003-11-26 22:29:53 +03:00
|
|
|
if(mf == generators[0]->GetMakefile())
|
2002-09-04 23:23:56 +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-26 22:29:53 +03:00
|
|
|
if(l->first == "ALL_BUILD" && !doneAllBuild)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2002-09-08 05:26:08 +04:00
|
|
|
unsigned int j;
|
2003-11-26 22:29:53 +03:00
|
|
|
for(j = 0; j < generators.size(); ++j)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTargets &atgts = generators[j]->GetMakefile()->GetTargets();
|
|
|
|
for(cmTargets::iterator al = atgts.begin();
|
2002-09-04 23:23:56 +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 DSW file
|
|
|
|
if (strncmp(l->first.c_str(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
|
|
|
|
{
|
2004-01-07 17:08:52 +03: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];
|
2004-09-15 20:07:57 +04:00
|
|
|
this->WriteExternalProject(fout, project.c_str(), location.c_str(), cc.GetDepends());
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((l->second.GetType() != cmTarget::INSTALL_FILES)
|
|
|
|
&& (l->second.GetType() != cmTarget::INSTALL_PROGRAMS))
|
|
|
|
{
|
2003-11-26 22:29:53 +03:00
|
|
|
bool skip = false;
|
|
|
|
// skip ALL_BUILD and RUN_TESTS if they have already been added
|
|
|
|
if(l->first == "ALL_BUILD" )
|
|
|
|
{
|
|
|
|
if(doneAllBuild)
|
|
|
|
{
|
|
|
|
skip = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
doneAllBuild = true;
|
|
|
|
}
|
|
|
|
}
|
2004-04-15 21:09:24 +04:00
|
|
|
if(l->first == "INSTALL")
|
|
|
|
{
|
|
|
|
if(doneInstall)
|
|
|
|
{
|
|
|
|
skip = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
doneInstall = true;
|
|
|
|
}
|
|
|
|
}
|
2003-11-26 22:29:53 +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-26 22:29:53 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
++si;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the footer for the DSW file
|
|
|
|
this->WriteDSWFooter(fout);
|
|
|
|
}
|
|
|
|
|
2004-03-10 00:28:44 +03:00
|
|
|
void cmGlobalVisualStudio6Generator::OutputDSWFile(cmLocalGenerator* root,
|
|
|
|
std::vector<cmLocalGenerator*>& generators)
|
2003-11-26 22:29:53 +03:00
|
|
|
{
|
|
|
|
if(generators.size() == 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2004-03-10 00:28:44 +03:00
|
|
|
std::string fname = root->GetMakefile()->GetStartOutputDirectory();
|
2003-11-26 22:29:53 +03:00
|
|
|
fname += "/";
|
2004-03-10 00:28:44 +03:00
|
|
|
fname += root->GetMakefile()->GetProjectName();
|
2003-11-26 22:29:53 +03:00
|
|
|
fname += ".dsw";
|
|
|
|
std::ofstream fout(fname.c_str());
|
|
|
|
if(!fout)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Error can not open DSW file for write: ",
|
|
|
|
fname.c_str());
|
2004-09-08 00:55:25 +04:00
|
|
|
cmSystemTools::ReportLastSystemError("");
|
2003-11-26 22:29:53 +03:00
|
|
|
return;
|
|
|
|
}
|
2004-03-10 00:28:44 +03:00
|
|
|
this->WriteDSWFile(fout, root, generators);
|
2003-11-26 22:29:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// output the DSW file
|
|
|
|
void cmGlobalVisualStudio6Generator::OutputDSWFile()
|
|
|
|
{
|
|
|
|
std::map<cmStdString, std::vector<cmLocalGenerator*> >::iterator it;
|
2005-01-21 20:26:32 +03:00
|
|
|
for(it = m_ProjectMap.begin(); it!= m_ProjectMap.end(); ++it)
|
2003-11-26 22:29:53 +03:00
|
|
|
{
|
2004-03-10 00:28:44 +03:00
|
|
|
this->OutputDSWFile(it->second[0], it->second);
|
2003-11-26 22:29:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// Write a dsp file into the DSW file,
|
|
|
|
// Note, that dependencies from executables to
|
|
|
|
// the libraries it uses are also done here
|
|
|
|
void cmGlobalVisualStudio6Generator::WriteProject(std::ostream& fout,
|
|
|
|
const char* dspname,
|
|
|
|
const char* dir,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
fout << "#########################################################"
|
|
|
|
"######################\n\n";
|
|
|
|
fout << "Project: \"" << dspname << "\"="
|
|
|
|
<< dir << "\\" << dspname << ".dsp - Package Owner=<4>\n\n";
|
|
|
|
fout << "Package=<5>\n{{{\n}}}\n\n";
|
|
|
|
fout << "Package=<4>\n";
|
|
|
|
fout << "{{{\n";
|
|
|
|
|
|
|
|
// 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)
|
2002-10-07 16:23:19 +04:00
|
|
|
{
|
2002-09-04 23:23:56 +04:00
|
|
|
// is the library part of this DSW ? If so add dependency
|
2006-01-14 02:18:32 +03:00
|
|
|
if(this->FindTarget(0, j->first.c_str()))
|
|
|
|
{
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "Begin Project Dependency\n";
|
2004-09-16 18:48:10 +04:00
|
|
|
fout << "Project_Dep_Name " << j->first.c_str() << "\n";
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "End Project Dependency\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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-16 18:48:10 +04:00
|
|
|
std::string depName = *i;
|
|
|
|
if(strncmp(depName.c_str(), "INCLUDE_EXTERNAL_MSPROJECT", 26) == 0)
|
|
|
|
{
|
|
|
|
depName.erase(depName.begin(), depName.begin() + 27);
|
|
|
|
}
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "Begin Project Dependency\n";
|
2004-09-16 18:48:10 +04:00
|
|
|
fout << "Project_Dep_Name " << depName << "\n";
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "End Project Dependency\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fout << "}}}\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Write a dsp file into the DSW file,
|
|
|
|
// Note, that dependencies from executables to
|
|
|
|
// the libraries it uses are also done here
|
|
|
|
void cmGlobalVisualStudio6Generator::WriteExternalProject(std::ostream& fout,
|
2002-10-07 16:23:19 +04:00
|
|
|
const char* name,
|
|
|
|
const char* location,
|
2002-09-04 23:23:56 +04:00
|
|
|
const std::vector<std::string>& dependencies)
|
|
|
|
{
|
|
|
|
fout << "#########################################################"
|
|
|
|
"######################\n\n";
|
|
|
|
fout << "Project: \"" << name << "\"="
|
|
|
|
<< location << " - Package Owner=<4>\n\n";
|
|
|
|
fout << "Package=<5>\n{{{\n}}}\n\n";
|
|
|
|
fout << "Package=<4>\n";
|
|
|
|
fout << "{{{\n";
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<std::string>::const_iterator i, end;
|
|
|
|
// write dependencies.
|
|
|
|
i = dependencies.begin();
|
|
|
|
end = dependencies.end();
|
|
|
|
for(;i!= end; ++i)
|
|
|
|
{
|
|
|
|
fout << "Begin Project Dependency\n";
|
|
|
|
fout << "Project_Dep_Name " << *i << "\n";
|
|
|
|
fout << "End Project Dependency\n";
|
|
|
|
}
|
|
|
|
fout << "}}}\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Standard end of dsw file
|
|
|
|
void cmGlobalVisualStudio6Generator::WriteDSWFooter(std::ostream& fout)
|
|
|
|
{
|
|
|
|
fout << "######################################################"
|
|
|
|
"#########################\n\n";
|
|
|
|
fout << "Global:\n\n";
|
|
|
|
fout << "Package=<5>\n{{{\n}}}\n\n";
|
|
|
|
fout << "Package=<3>\n{{{\n}}}\n\n";
|
|
|
|
fout << "#####################################################"
|
|
|
|
"##########################\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ouput standard header for dsw file
|
|
|
|
void cmGlobalVisualStudio6Generator::WriteDSWHeader(std::ostream& fout)
|
|
|
|
{
|
|
|
|
fout << "Microsoft Developer Studio Workspace File, Format Version 6.00\n";
|
|
|
|
fout << "# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\n\n";
|
|
|
|
}
|
2003-07-08 05:52:10 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmGlobalVisualStudio6Generator::GetDocumentation(cmDocumentationEntry& entry) const
|
|
|
|
{
|
|
|
|
entry.name = this->GetName();
|
|
|
|
entry.brief = "Generates Visual Studio 6 project files.";
|
|
|
|
entry.full = "";
|
|
|
|
}
|
2006-02-03 19:36:11 +03:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmGlobalVisualStudio6Generator
|
|
|
|
::AppendDirectoryForConfig(const char* config, std::string& dir)
|
|
|
|
{
|
|
|
|
if(config)
|
|
|
|
{
|
|
|
|
dir += "/";
|
|
|
|
dir += config;
|
|
|
|
}
|
|
|
|
}
|