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");
|
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.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
int cmGlobalVisualStudio6Generator::TryCompile(const char *,
|
|
|
|
const char *bindir,
|
2002-09-11 00:49:40 +04:00
|
|
|
const char *projectName,
|
2002-09-23 17:07:41 +04:00
|
|
|
const char *targetName,
|
2004-08-05 00:33:10 +04:00
|
|
|
std::string *output,
|
|
|
|
cmMakefile* mf)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
// now build the test
|
|
|
|
std::string makeCommand =
|
|
|
|
m_CMakeInstance->GetCacheManager()->GetCacheValue("CMAKE_MAKE_PROGRAM");
|
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]);
|
|
|
|
std::string originalCommand = makeCommand;
|
|
|
|
makeCommand = cmSystemTools::FindProgram(makeCommand.c_str(), 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());
|
2002-09-04 23:23:56 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
makeCommand = cmSystemTools::ConvertToOutputPath(makeCommand.c_str());
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run an executable command and put the stdout in output.
|
|
|
|
*/
|
|
|
|
std::string cwd = cmSystemTools::GetCurrentWorkingDirectory();
|
|
|
|
cmSystemTools::ChangeDirectory(bindir);
|
|
|
|
// 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 \"";
|
|
|
|
if (targetName)
|
|
|
|
{
|
|
|
|
makeCommand += targetName;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
makeCommand += "ALL_BUILD";
|
|
|
|
}
|
2003-11-12 22:06:02 +03:00
|
|
|
makeCommand += " - ";
|
2004-08-05 00:33:10 +04:00
|
|
|
if(const char* config = mf->GetDefinition("CMAKE_TRY_COMPILE_CONFIGURATION"))
|
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";
|
|
|
|
}
|
|
|
|
makeCommand += "\"";
|
2002-09-11 00:49:40 +04:00
|
|
|
int retVal;
|
2003-08-04 06:34:37 +04:00
|
|
|
int timeout = cmGlobalGenerator::s_TryCompileTimeout;
|
|
|
|
if (!cmSystemTools::RunSingleCommand(makeCommand.c_str(), output,
|
|
|
|
&retVal, 0, false, timeout))
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2003-01-22 17:28:53 +03:00
|
|
|
std::string e = "Error executing make program \"";
|
|
|
|
e += originalCommand;
|
|
|
|
e += "\" specified by CMAKE_MAKE_PROGRAM cache entry. ";
|
|
|
|
e += "The command string used was \"";
|
|
|
|
e += makeCommand.c_str();
|
|
|
|
e += "\".";
|
|
|
|
cmSystemTools::Error(e.c_str());
|
2002-09-04 23:23:56 +04:00
|
|
|
// return to the original directory
|
|
|
|
cmSystemTools::ChangeDirectory(cwd.c_str());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
cmSystemTools::ChangeDirectory(cwd.c_str());
|
2002-09-11 00:49:40 +04:00
|
|
|
return retVal;
|
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()
|
|
|
|
{
|
2003-11-26 22:29:53 +03:00
|
|
|
// collect sub-projects
|
|
|
|
this->CollectSubprojects();
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// add a special target that depends on ALL projects for easy build
|
2003-11-26 22:29:53 +03:00
|
|
|
// of one configuration only.
|
2003-06-03 18:30:23 +04:00
|
|
|
std::vector<std::string> srcs;
|
2003-11-26 22:29:53 +03:00
|
|
|
std::map<cmStdString, std::vector<cmLocalGenerator*> >::iterator it;
|
|
|
|
for(it = m_SubProjectMap.begin(); it!= m_SubProjectMap.end(); ++it)
|
|
|
|
{
|
|
|
|
std::vector<cmLocalGenerator*>& gen = it->second;
|
|
|
|
// add the ALL_BUILD to the first local generator of each project
|
|
|
|
if(gen.size())
|
|
|
|
{
|
|
|
|
gen[0]->GetMakefile()->
|
|
|
|
AddUtilityCommand("ALL_BUILD", "echo","\"Build all projects\"",false,srcs);
|
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()->
|
|
|
|
AddUtilityCommand("INSTALL", cmake_command.c_str(),
|
|
|
|
"-DBUILD_TYPE=$(IntDir) -P cmake_install.cmake",false,srcs);
|
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();
|
|
|
|
}
|
|
|
|
|
2003-11-26 22:29:53 +03:00
|
|
|
// populate the m_SubProjectMap
|
|
|
|
void cmGlobalVisualStudio6Generator::CollectSubprojects()
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2003-11-26 22:29:53 +03:00
|
|
|
unsigned int i;
|
|
|
|
for(i = 0; i < m_LocalGenerators.size(); ++i)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2003-11-26 22:29:53 +03:00
|
|
|
std::string name = m_LocalGenerators[i]->GetMakefile()->GetProjectName();
|
|
|
|
m_SubProjectMap[name].push_back(m_LocalGenerators[i]);
|
|
|
|
std::vector<std::string> const& pprojects
|
|
|
|
= m_LocalGenerators[i]->GetMakefile()->GetParentProjects();
|
2003-11-27 00:04:01 +03:00
|
|
|
for(unsigned int k =0; k < pprojects.size(); ++k)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2003-11-26 22:29:53 +03:00
|
|
|
m_SubProjectMap[pprojects[k]].push_back(m_LocalGenerators[i]);
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-10 00:28:44 +03:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// 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
|
2004-06-14 18:28:04 +04:00
|
|
|
std::string homedir = root->GetMakefile()->GetCurrentDirectory();
|
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
|
|
|
|
std::string dir = mf->GetStartDirectory();
|
|
|
|
// 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
|
|
|
{
|
|
|
|
const cmTargets &atgts =
|
2003-11-26 22:29:53 +03:00
|
|
|
generators[j]->GetMakefile()->GetTargets();
|
2002-09-04 23:23:56 +04:00
|
|
|
for(cmTargets::const_iterator al = atgts.begin();
|
|
|
|
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];
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
// dodgy use of the cmCustomCommand's members to store the
|
|
|
|
// arguments from the INCLUDE_EXTERNAL_MSPROJECT command
|
|
|
|
std::vector<std::string> stuff = cc.GetDepends();
|
2003-06-03 18:30:23 +04:00
|
|
|
std::vector<std::string> depends;
|
|
|
|
depends.push_back(cc.GetOutput());
|
2002-09-04 23:23:56 +04:00
|
|
|
this->WriteExternalProject(fout, stuff[0].c_str(), stuff[1].c_str(), depends);
|
|
|
|
}
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
this->WriteProject(fout, si->c_str(), dir.c_str(),l->second);
|
|
|
|
}
|
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;
|
|
|
|
for(it = m_SubProjectMap.begin(); it!= m_SubProjectMap.end(); ++it)
|
|
|
|
{
|
2004-03-10 00:28:44 +03:00
|
|
|
this->OutputDSWFile(it->second[0], it->second);
|
2003-11-26 22:29:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline std::string removeQuotes(const std::string& s)
|
|
|
|
{
|
|
|
|
if(s[0] == '\"' && s[s.size()-1] == '\"')
|
|
|
|
{
|
|
|
|
return s.substr(1, s.size()-2);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmGlobalVisualStudio6Generator::SetupTests()
|
|
|
|
{
|
|
|
|
std::string ctest =
|
2004-08-12 00:57:27 +04:00
|
|
|
m_LocalGenerators[0]->GetMakefile()->GetRequiredDefinition("CMAKE_COMMAND");
|
2003-11-26 22:29:53 +03:00
|
|
|
ctest = removeQuotes(ctest);
|
|
|
|
ctest = cmSystemTools::GetFilenamePath(ctest.c_str());
|
|
|
|
ctest += "/";
|
|
|
|
ctest += "ctest";
|
|
|
|
ctest += cmSystemTools::GetExecutableExtension();
|
|
|
|
if(!cmSystemTools::FileExists(ctest.c_str()))
|
|
|
|
{
|
|
|
|
ctest =
|
2004-08-12 00:57:27 +04:00
|
|
|
m_LocalGenerators[0]->GetMakefile()->GetRequiredDefinition("CMAKE_COMMAND");
|
2003-11-26 22:29:53 +03:00
|
|
|
ctest = cmSystemTools::GetFilenamePath(ctest.c_str());
|
|
|
|
ctest += "/Debug/";
|
|
|
|
ctest += "ctest";
|
|
|
|
ctest += cmSystemTools::GetExecutableExtension();
|
|
|
|
}
|
|
|
|
if(!cmSystemTools::FileExists(ctest.c_str()))
|
|
|
|
{
|
|
|
|
ctest =
|
2004-08-12 00:57:27 +04:00
|
|
|
m_LocalGenerators[0]->GetMakefile()->GetRequiredDefinition("CMAKE_COMMAND");
|
2003-11-26 22:29:53 +03:00
|
|
|
ctest = cmSystemTools::GetFilenamePath(ctest.c_str());
|
|
|
|
ctest += "/Release/";
|
|
|
|
ctest += "ctest";
|
|
|
|
ctest += cmSystemTools::GetExecutableExtension();
|
|
|
|
}
|
|
|
|
// if we found ctest
|
|
|
|
if (cmSystemTools::FileExists(ctest.c_str()))
|
|
|
|
{
|
|
|
|
// Create a full path filename for output Testfile
|
|
|
|
std::string fname;
|
|
|
|
fname = m_CMakeInstance->GetStartOutputDirectory();
|
|
|
|
fname += "/";
|
|
|
|
fname += "DartTestfile.txt";
|
|
|
|
|
|
|
|
// If the file doesn't exist, then ENABLE_TESTING hasn't been run
|
|
|
|
if (cmSystemTools::FileExists(fname.c_str()))
|
|
|
|
{
|
|
|
|
std::vector<std::string> srcs;
|
|
|
|
std::map<cmStdString, std::vector<cmLocalGenerator*> >::iterator it;
|
|
|
|
for(it = m_SubProjectMap.begin(); it!= m_SubProjectMap.end(); ++it)
|
|
|
|
{
|
|
|
|
std::vector<cmLocalGenerator*>& gen = it->second;
|
|
|
|
// add the ALL_BUILD to the first local generator of each project
|
|
|
|
if(gen.size())
|
|
|
|
{
|
|
|
|
gen[0]->GetMakefile()->
|
2004-08-12 00:57:27 +04:00
|
|
|
AddUtilityCommand("RUN_TESTS", ctest.c_str(), "-C $(IntDir)",false,srcs);
|
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,
|
|
|
|
const cmTarget& target)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
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)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
fout << "Begin Project Dependency\n";
|
|
|
|
fout << "Project_Dep_Name " << j->first << "\n";
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
fout << "Begin Project Dependency\n";
|
|
|
|
fout << "Project_Dep_Name " << *i << "\n";
|
|
|
|
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 = "";
|
|
|
|
}
|