2001-01-11 22:55:47 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2000 National Library of Medicine
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See COPYRIGHT.txt for copyright details.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2000-08-29 23:26:29 +04:00
|
|
|
#include "cmMakefile.h"
|
2001-01-18 19:20:24 +03:00
|
|
|
#include "cmCommand.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
#include "cmStandardIncludes.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
#include "cmClassFile.h"
|
2000-08-30 21:35:41 +04:00
|
|
|
#include "cmDirectory.h"
|
2000-09-12 13:30:35 +04:00
|
|
|
#include "cmSystemTools.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
#include "cmMakefileGenerator.h"
|
2001-02-13 03:49:52 +03:00
|
|
|
#include "cmCommands.h"
|
2001-02-19 23:13:48 +03:00
|
|
|
#include "cmCacheManager.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
|
|
|
|
// default is not to be building executables
|
|
|
|
cmMakefile::cmMakefile()
|
|
|
|
{
|
2001-01-05 19:41:20 +03:00
|
|
|
m_DefineFlags = " ";
|
|
|
|
m_MakefileGenerator = 0;
|
2001-01-18 19:20:24 +03:00
|
|
|
this->AddDefaultCommands();
|
2001-03-08 18:30:18 +03:00
|
|
|
this->AddDefaultDefinitions();
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
|
2001-01-18 19:20:24 +03:00
|
|
|
void cmMakefile::AddDefaultCommands()
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-02-13 03:49:52 +03:00
|
|
|
std::list<cmCommand*> commands;
|
|
|
|
GetPredefinedCommands(commands);
|
|
|
|
for(std::list<cmCommand*>::iterator i = commands.begin();
|
|
|
|
i != commands.end(); ++i)
|
|
|
|
{
|
|
|
|
this->AddCommand(*i);
|
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
#ifdef _WIN32
|
|
|
|
this->AddDefinition("WIN32", "1");
|
|
|
|
#else
|
|
|
|
this->AddDefinition("UNIX", "1");
|
|
|
|
#endif
|
2001-01-18 19:20:24 +03:00
|
|
|
// Cygwin is more like unix so enable the unix commands
|
2001-01-05 19:41:20 +03:00
|
|
|
#if defined(__CYGWIN__)
|
|
|
|
this->AddDefinition("UNIX", "1");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
cmMakefile::~cmMakefile()
|
|
|
|
{
|
2001-02-23 18:40:13 +03:00
|
|
|
for(unsigned int i=0; i < m_UsedCommands.size(); i++)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-01-18 19:20:24 +03:00
|
|
|
delete m_UsedCommands[i];
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
2001-01-18 19:20:24 +03:00
|
|
|
for(RegisteredCommandsMap::iterator j = m_Commands.begin();
|
|
|
|
j != m_Commands.end(); ++j)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
|
|
|
delete (*j).second;
|
|
|
|
}
|
|
|
|
delete m_MakefileGenerator;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmMakefile::PrintStringVector(const char* s, std::vector<std::string>& v)
|
|
|
|
{
|
|
|
|
std::cout << s << ": ( \n";
|
|
|
|
for(std::vector<std::string>::iterator i = v.begin();
|
|
|
|
i != v.end(); ++i)
|
|
|
|
{
|
|
|
|
std::cout << (*i).c_str() << " ";
|
|
|
|
}
|
|
|
|
std::cout << " )\n";
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// call print on all the classes in the makefile
|
|
|
|
void cmMakefile::Print()
|
|
|
|
{
|
2001-01-05 19:41:20 +03:00
|
|
|
std::cout << "classes:\n";
|
|
|
|
for(unsigned int i = 0; i < m_Classes.size(); i++)
|
2000-08-29 23:26:29 +04:00
|
|
|
m_Classes[i].Print();
|
2001-02-15 21:30:13 +03:00
|
|
|
std::cout << " m_CurrentOutputDirectory; " <<
|
|
|
|
m_CurrentOutputDirectory.c_str() << std::endl;
|
|
|
|
std::cout << " m_StartOutputDirectory; " <<
|
|
|
|
m_StartOutputDirectory.c_str() << std::endl;
|
|
|
|
std::cout << " m_HomeOutputDirectory; " <<
|
|
|
|
m_HomeOutputDirectory.c_str() << std::endl;
|
2001-01-05 19:41:20 +03:00
|
|
|
std::cout << " m_cmCurrentDirectory; " <<
|
|
|
|
m_cmCurrentDirectory.c_str() << std::endl;
|
2001-02-15 21:30:13 +03:00
|
|
|
std::cout << " m_cmStartDirectory; " <<
|
|
|
|
m_cmStartDirectory.c_str() << std::endl;
|
|
|
|
std::cout << " m_cmHomeDirectory; " <<
|
|
|
|
m_cmHomeDirectory.c_str() << std::endl;
|
2001-01-05 19:41:20 +03:00
|
|
|
std::cout << " m_LibraryName; " << m_LibraryName.c_str() << std::endl;
|
|
|
|
std::cout << " m_ProjectName; " << m_ProjectName.c_str() << std::endl;
|
|
|
|
this->PrintStringVector("m_SubDirectories ", m_SubDirectories);
|
|
|
|
this->PrintStringVector("m_MakeVerbatim ", m_MakeVerbatim);
|
|
|
|
this->PrintStringVector("m_IncludeDirectories;", m_IncludeDirectories);
|
|
|
|
this->PrintStringVector("m_LinkDirectories", m_LinkDirectories);
|
|
|
|
this->PrintStringVector("m_LinkLibraries", m_LinkLibraries);
|
|
|
|
this->PrintStringVector("m_LinkLibrariesWin32", m_LinkLibrariesWin32);
|
|
|
|
this->PrintStringVector("m_LinkLibrariesUnix", m_LinkLibrariesUnix);
|
2001-03-09 18:53:32 +03:00
|
|
|
this->PrintStringVector("m_Utilities", m_Utilities);
|
|
|
|
this->PrintStringVector("m_UtilityDirectories", m_UtilityDirectories);
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
|
2000-08-30 21:35:41 +04:00
|
|
|
// Parse the given CMakeLists.txt file into a list of classes.
|
2001-02-15 21:30:13 +03:00
|
|
|
// Reads in current CMakeLists file and all parent CMakeLists files
|
|
|
|
// executing all inherited commands in the parents
|
|
|
|
bool cmMakefile::ReadListFile(const char* filename)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-02-15 21:30:13 +03:00
|
|
|
// is there a parent CMakeLists file that does not go beyond the
|
|
|
|
// Home directory? if so recurse and read in that List file
|
|
|
|
std::string parentList = this->GetParentListFileName(filename);
|
|
|
|
if (parentList != "")
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-02-15 21:30:13 +03:00
|
|
|
// save the current directory
|
|
|
|
std::string srcdir = m_cmCurrentDirectory;
|
|
|
|
std::string bindir = m_CurrentOutputDirectory;
|
|
|
|
// compute the new current directories
|
|
|
|
std::string::size_type pos = m_cmCurrentDirectory.rfind('/');
|
|
|
|
if(pos != std::string::npos)
|
|
|
|
{
|
|
|
|
m_cmCurrentDirectory = m_cmCurrentDirectory.substr(0, pos);
|
|
|
|
}
|
|
|
|
pos = m_CurrentOutputDirectory.rfind('/');
|
|
|
|
if(pos != std::string::npos)
|
2001-02-13 03:49:52 +03:00
|
|
|
{
|
2001-02-15 21:30:13 +03:00
|
|
|
m_CurrentOutputDirectory = m_CurrentOutputDirectory.substr(0, pos);
|
2001-02-13 03:49:52 +03:00
|
|
|
}
|
2001-02-15 21:30:13 +03:00
|
|
|
this->ReadListFile(parentList.c_str());
|
|
|
|
// restore the current directory
|
|
|
|
m_cmCurrentDirectory = srcdir;
|
|
|
|
m_CurrentOutputDirectory = bindir;
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
2001-02-15 21:30:13 +03:00
|
|
|
|
|
|
|
// are we at the start CMakeLists file or are we processing a parent
|
|
|
|
// lists file
|
|
|
|
bool inheriting = (m_cmCurrentDirectory != m_cmStartDirectory);
|
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
// Now read the input file
|
2000-08-29 23:26:29 +04:00
|
|
|
std::ifstream fin(filename);
|
|
|
|
if(!fin)
|
|
|
|
{
|
2001-01-05 19:41:20 +03:00
|
|
|
cmSystemTools::Error("error can not open file ", filename);
|
2000-08-29 23:26:29 +04:00
|
|
|
return false;
|
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
std::string name;
|
|
|
|
std::vector<std::string> arguments;
|
|
|
|
while ( fin )
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-01-05 19:41:20 +03:00
|
|
|
if(cmSystemTools::ParseFunction(fin, name, arguments) )
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-01-18 19:20:24 +03:00
|
|
|
// Special command that needs to be removed when
|
|
|
|
// ADD_COMMAND is implemented
|
2001-01-05 19:41:20 +03:00
|
|
|
if(name == "VERBATIM")
|
2000-08-30 21:35:41 +04:00
|
|
|
{
|
2001-02-15 21:30:13 +03:00
|
|
|
if (!inheriting)
|
2000-08-30 21:35:41 +04:00
|
|
|
{
|
2001-01-05 19:41:20 +03:00
|
|
|
m_MakeVerbatim = arguments;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-01-18 19:20:24 +03:00
|
|
|
RegisteredCommandsMap::iterator pos = m_Commands.find(name);
|
|
|
|
if(pos != m_Commands.end())
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-01-18 19:20:24 +03:00
|
|
|
cmCommand* rm = (*pos).second;
|
|
|
|
cmCommand* usedCommand = rm->Clone();
|
|
|
|
usedCommand->SetMakefile(this);
|
2001-02-13 03:49:52 +03:00
|
|
|
bool keepCommand = false;
|
2001-01-18 19:20:24 +03:00
|
|
|
if(usedCommand->GetEnabled())
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
|
|
|
// if not running in inherit mode or
|
2001-01-18 19:20:24 +03:00
|
|
|
// if the command is inherited then Invoke it.
|
|
|
|
if(!inheriting || usedCommand->IsInherited())
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-01-18 19:20:24 +03:00
|
|
|
if(!usedCommand->Invoke(arguments))
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-01-18 19:20:24 +03:00
|
|
|
cmSystemTools::Error(usedCommand->GetError());
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
2001-02-13 03:49:52 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// use the command
|
|
|
|
keepCommand = true;
|
|
|
|
m_UsedCommands.push_back(usedCommand);
|
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
}
|
2001-02-13 03:49:52 +03:00
|
|
|
// if the Cloned command was not used
|
|
|
|
// then delete it
|
|
|
|
if(!keepCommand)
|
|
|
|
{
|
|
|
|
delete usedCommand;
|
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-02-26 21:25:47 +03:00
|
|
|
cmSystemTools::Error("unknown CMake command ", name.c_str());
|
2000-08-30 21:35:41 +04:00
|
|
|
}
|
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2001-02-13 03:49:52 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
|
|
|
|
|
2001-01-18 19:20:24 +03:00
|
|
|
void cmMakefile::AddCommand(cmCommand* wg)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
|
|
|
std::string name = wg->GetName();
|
2001-01-18 19:20:24 +03:00
|
|
|
m_Commands.insert( RegisteredCommandsMap::value_type(name, wg));
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set the make file
|
|
|
|
void cmMakefile::SetMakefileGenerator(cmMakefileGenerator* mf)
|
|
|
|
{
|
|
|
|
delete m_MakefileGenerator;
|
|
|
|
m_MakefileGenerator = mf;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate the output file
|
|
|
|
void cmMakefile::GenerateMakefile()
|
|
|
|
{
|
|
|
|
// do all the variable expansions here
|
2001-02-16 19:34:23 +03:00
|
|
|
this->ExpandVariables();
|
2001-01-05 19:41:20 +03:00
|
|
|
// set the makefile on the generator
|
|
|
|
m_MakefileGenerator->SetMakefile(this);
|
2001-01-18 19:20:24 +03:00
|
|
|
// give all the commands a chance to do something
|
2001-01-05 19:41:20 +03:00
|
|
|
// after the file has been parsed before generation
|
2001-01-18 19:20:24 +03:00
|
|
|
for(std::vector<cmCommand*>::iterator i = m_UsedCommands.begin();
|
|
|
|
i != m_UsedCommands.end(); ++i)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
|
|
|
(*i)->FinalPass();
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
// now do the generation
|
|
|
|
m_MakefileGenerator->GenerateMakefile();
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
void cmMakefile::AddClass(cmClassFile& cmfile)
|
|
|
|
{
|
|
|
|
m_Classes.push_back(cmfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-01-18 19:20:24 +03:00
|
|
|
void cmMakefile::AddCustomCommand(const char* source,
|
2001-01-05 19:41:20 +03:00
|
|
|
const char* result,
|
|
|
|
const char* command,
|
|
|
|
std::vector<std::string>& depends)
|
|
|
|
{
|
2001-01-18 19:20:24 +03:00
|
|
|
cmMakefile::customCommand customCommand;
|
|
|
|
customCommand.m_Source = source;
|
|
|
|
customCommand.m_Result = result;
|
|
|
|
customCommand.m_Command = command;
|
|
|
|
customCommand.m_Depends = depends;
|
|
|
|
m_CustomCommands.push_back(customCommand);
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmMakefile::AddDefineFlag(const char* flag)
|
|
|
|
{
|
|
|
|
m_DefineFlags += " ";
|
|
|
|
m_DefineFlags += flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmMakefile::AddExecutable(cmClassFile& cf)
|
|
|
|
{
|
2001-02-15 21:30:13 +03:00
|
|
|
cf.m_IsExecutable = true;
|
2001-01-05 19:41:20 +03:00
|
|
|
m_Classes.push_back(cf);
|
2001-02-15 21:30:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cmMakefile::HasExecutables()
|
|
|
|
{
|
|
|
|
for(unsigned int i = 0; i < m_Classes.size(); i++)
|
|
|
|
{
|
|
|
|
if (m_Classes[i].m_IsExecutable)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
|
2001-03-09 18:53:32 +03:00
|
|
|
void cmMakefile::AddUtility(const char* util)
|
|
|
|
{
|
|
|
|
m_Utilities.push_back(util);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmMakefile::AddUtilityDirectory(const char* dir)
|
|
|
|
{
|
|
|
|
m_UtilityDirectories.push_back(dir);
|
|
|
|
}
|
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
void cmMakefile::AddLinkLibrary(const char* lib)
|
|
|
|
{
|
|
|
|
m_LinkLibraries.push_back(lib);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmMakefile::AddLinkDirectory(const char* dir)
|
|
|
|
{
|
|
|
|
m_LinkDirectories.push_back(dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmMakefile::AddSubDirectory(const char* sub)
|
|
|
|
{
|
|
|
|
m_SubDirectories.push_back(sub);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmMakefile::AddIncludeDirectory(const char* inc)
|
|
|
|
{
|
|
|
|
m_IncludeDirectories.push_back(inc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmMakefile::AddDefinition(const char* name, const char* value)
|
|
|
|
{
|
|
|
|
m_Definitions.insert(DefinitionMap::value_type(name, value));
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmMakefile::SetProjectName(const char* p)
|
|
|
|
{
|
|
|
|
m_ProjectName = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmMakefile::SetLibraryName(const char* l)
|
|
|
|
{
|
|
|
|
m_LibraryName = l;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmMakefile::AddExtraDirectory(const char* dir)
|
|
|
|
{
|
|
|
|
m_AuxSourceDirectories.push_back(dir);
|
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2001-02-15 21:30:13 +03:00
|
|
|
// return the file name for the parent CMakeLists file to the
|
|
|
|
// one passed in. Zero is returned if the CMakeLists file is the
|
|
|
|
// one in the home directory or if for some reason a parent cmake lists
|
|
|
|
// file cannot be found.
|
|
|
|
std::string cmMakefile::GetParentListFileName(const char *currentFileName)
|
2000-08-30 21:35:41 +04:00
|
|
|
{
|
2001-02-15 21:30:13 +03:00
|
|
|
// extract the directory name
|
|
|
|
std::string parentFile;
|
|
|
|
std::string listsDir = currentFileName;
|
|
|
|
std::string::size_type pos = listsDir.rfind('/');
|
|
|
|
// if we could not find the directory return 0
|
|
|
|
if(pos == std::string::npos)
|
2000-08-30 21:35:41 +04:00
|
|
|
{
|
2001-02-15 21:30:13 +03:00
|
|
|
return parentFile;
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
2001-02-15 21:30:13 +03:00
|
|
|
listsDir = listsDir.substr(0, pos);
|
|
|
|
|
|
|
|
// if we are in the home directory then stop, return 0
|
|
|
|
if(m_cmHomeDirectory == listsDir)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-02-15 21:30:13 +03:00
|
|
|
return parentFile;
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
2001-02-15 21:30:13 +03:00
|
|
|
|
|
|
|
// is there a parent directory we can check
|
|
|
|
pos = listsDir.rfind('/');
|
|
|
|
// if we could not find the directory return 0
|
|
|
|
if(pos == std::string::npos)
|
|
|
|
{
|
|
|
|
return parentFile;
|
|
|
|
}
|
|
|
|
listsDir = listsDir.substr(0, pos);
|
|
|
|
|
|
|
|
// is there a CMakeLists.txt file in the parent directory ?
|
|
|
|
parentFile = listsDir;
|
|
|
|
parentFile += "/CMakeLists.txt";
|
|
|
|
if(!cmSystemTools::FileExists(parentFile.c_str()))
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-02-15 21:30:13 +03:00
|
|
|
parentFile = "";
|
|
|
|
return parentFile;
|
2000-08-30 21:35:41 +04:00
|
|
|
}
|
2001-02-15 21:30:13 +03:00
|
|
|
|
|
|
|
return parentFile;
|
2000-08-30 21:35:41 +04:00
|
|
|
}
|
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
// expance CMAKE_BINARY_DIR and CMAKE_SOURCE_DIR in the
|
|
|
|
// include and library directories.
|
|
|
|
|
2001-02-16 19:34:23 +03:00
|
|
|
void cmMakefile::ExpandVariables()
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-02-13 03:49:52 +03:00
|
|
|
// make sure binary and source dir are defined
|
2001-02-15 21:30:13 +03:00
|
|
|
this->AddDefinition("CMAKE_BINARY_DIR", this->GetHomeOutputDirectory());
|
2001-02-13 03:49:52 +03:00
|
|
|
this->AddDefinition("CMAKE_SOURCE_DIR", this->GetHomeDirectory());
|
|
|
|
|
|
|
|
// Now expand varibles in the include and link strings
|
2001-01-05 19:41:20 +03:00
|
|
|
std::vector<std::string>::iterator j, begin, end;
|
|
|
|
begin = m_IncludeDirectories.begin();
|
|
|
|
end = m_IncludeDirectories.end();
|
|
|
|
for(j = begin; j != end; ++j)
|
|
|
|
{
|
2001-02-16 19:34:23 +03:00
|
|
|
this->ExpandVariablesInString(*j);
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
begin = m_LinkDirectories.begin();
|
|
|
|
end = m_LinkDirectories.end();
|
|
|
|
for(j = begin; j != end; ++j)
|
|
|
|
{
|
2001-02-16 19:34:23 +03:00
|
|
|
this->ExpandVariablesInString(*j);
|
|
|
|
}
|
|
|
|
begin = m_LinkLibraries.begin();
|
|
|
|
end = m_LinkLibraries.end();
|
|
|
|
for(j = begin; j != end; ++j)
|
|
|
|
{
|
|
|
|
this->ExpandVariablesInString(*j);
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* cmMakefile::GetDefinition(const char* name)
|
|
|
|
{
|
|
|
|
DefinitionMap::iterator pos = m_Definitions.find(name);
|
|
|
|
if(pos != m_Definitions.end())
|
|
|
|
{
|
|
|
|
return (*pos).second.c_str();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2001-01-12 20:43:00 +03:00
|
|
|
|
|
|
|
int cmMakefile::DumpDocumentationToFile(const char *fileName)
|
|
|
|
{
|
|
|
|
// Open the supplied filename
|
|
|
|
std::ofstream f;
|
|
|
|
f.open(fileName, std::ios::out);
|
|
|
|
|
|
|
|
if ( f.fail() )
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-01-18 19:20:24 +03:00
|
|
|
// Loop over all registered commands and print out documentation
|
2001-01-12 20:43:00 +03:00
|
|
|
const char *name;
|
|
|
|
const char *terse;
|
|
|
|
const char *full;
|
|
|
|
|
2001-01-18 19:20:24 +03:00
|
|
|
for(RegisteredCommandsMap::iterator j = m_Commands.begin();
|
|
|
|
j != m_Commands.end(); ++j)
|
2001-01-12 20:43:00 +03:00
|
|
|
{
|
|
|
|
name = (*j).second->GetName();
|
2001-01-12 22:35:15 +03:00
|
|
|
terse = (*j).second->GetTerseDocumentation();
|
|
|
|
full = (*j).second->GetFullDocumentation();
|
2001-01-12 20:43:00 +03:00
|
|
|
f << name << " - " << terse << std::endl
|
2001-01-12 20:49:49 +03:00
|
|
|
<< "Usage: " << full << std::endl << std::endl;
|
2001-01-12 20:43:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-02-13 03:49:52 +03:00
|
|
|
|
2001-02-16 19:34:23 +03:00
|
|
|
void cmMakefile::ExpandVariablesInString(std::string& source)
|
2001-02-13 03:49:52 +03:00
|
|
|
{
|
|
|
|
for(DefinitionMap::iterator i = m_Definitions.begin();
|
|
|
|
i != m_Definitions.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string variable = "${";
|
|
|
|
variable += (*i).first;
|
|
|
|
variable += "}";
|
2001-02-14 00:48:00 +03:00
|
|
|
cmSystemTools::ReplaceString(source, variable.c_str(),
|
|
|
|
(*i).second.c_str());
|
|
|
|
variable = "@";
|
|
|
|
variable += (*i).first;
|
|
|
|
variable += "@";
|
2001-02-13 03:49:52 +03:00
|
|
|
cmSystemTools::ReplaceString(source, variable.c_str(),
|
|
|
|
(*i).second.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-23 03:24:43 +03:00
|
|
|
|
|
|
|
// recursive function to create a vector of cmMakefile objects
|
|
|
|
// This is done by reading the sub directory CMakeLists.txt files,
|
|
|
|
// then calling this function with the new cmMakefile object
|
|
|
|
void
|
|
|
|
cmMakefile::FindSubDirectoryCMakeListsFiles(std::vector<cmMakefile*>&
|
|
|
|
makefiles)
|
|
|
|
{
|
|
|
|
// loop over all the sub directories of this makefile
|
|
|
|
const std::vector<std::string>& subdirs = this->GetSubDirectories();
|
|
|
|
for(std::vector<std::string>::const_iterator i = subdirs.begin();
|
|
|
|
i != subdirs.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string subdir = *i;
|
|
|
|
// Create a path to the list file in the sub directory
|
|
|
|
std::string listFile = this->GetCurrentDirectory();
|
|
|
|
listFile += "/";
|
|
|
|
listFile += subdir;
|
|
|
|
listFile += "/CMakeLists.txt";
|
|
|
|
// if there is a CMakeLists.txt file read it
|
|
|
|
if(!cmSystemTools::FileExists(listFile.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("CMakeLists.txt file missing from sub directory:",
|
|
|
|
listFile.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmMakefile* mf = new cmMakefile;
|
|
|
|
makefiles.push_back(mf);
|
|
|
|
// initialize new makefile
|
|
|
|
mf->SetHomeOutputDirectory(this->GetHomeOutputDirectory());
|
|
|
|
mf->SetHomeDirectory(this->GetHomeDirectory());
|
|
|
|
// add the subdir to the start output directory
|
|
|
|
std::string outdir = this->GetStartOutputDirectory();
|
|
|
|
outdir += "/";
|
|
|
|
outdir += subdir;
|
|
|
|
mf->SetStartOutputDirectory(outdir.c_str());
|
|
|
|
// add the subdir to the start source directory
|
|
|
|
std::string currentDir = this->GetStartDirectory();
|
|
|
|
currentDir += "/";
|
|
|
|
currentDir += subdir;
|
|
|
|
mf->SetStartDirectory(currentDir.c_str());
|
|
|
|
// Parse the CMakeLists.txt file
|
|
|
|
currentDir += "/CMakeLists.txt";
|
|
|
|
mf->MakeStartDirectoriesCurrent();
|
|
|
|
mf->ReadListFile(currentDir.c_str());
|
|
|
|
// recurse into nextDir
|
|
|
|
mf->FindSubDirectoryCMakeListsFiles(makefiles);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmMakefile::GenerateCacheOnly()
|
|
|
|
{
|
|
|
|
std::vector<cmMakefile*> makefiles;
|
|
|
|
this->FindSubDirectoryCMakeListsFiles(makefiles);
|
2001-02-23 18:40:13 +03:00
|
|
|
for(unsigned int i =0; i < makefiles.size(); ++i)
|
2001-02-23 03:24:43 +03:00
|
|
|
{
|
|
|
|
delete makefiles[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-08 18:30:18 +03:00
|
|
|
/**
|
|
|
|
* Add the default definitions to the makefile. These values must not
|
|
|
|
* be dependent on anything that isn't known when this cmMakefile instance
|
|
|
|
* is constructed.
|
|
|
|
*/
|
|
|
|
void cmMakefile::AddDefaultDefinitions()
|
|
|
|
{
|
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
2001-03-09 02:24:47 +03:00
|
|
|
this->AddDefinition("CMAKE_CFG_OUTDIR","$(OUTDIR)");
|
2001-03-08 18:30:18 +03:00
|
|
|
#else
|
2001-03-09 02:24:47 +03:00
|
|
|
this->AddDefinition("CMAKE_CFG_OUTDIR",".");
|
2001-03-08 18:30:18 +03:00
|
|
|
#endif
|
|
|
|
}
|