2002-08-31 00:00:35 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-08-31 00:00:35 +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-08-31 00:00:35 +04:00
|
|
|
|
2004-01-23 16:53:51 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2002-08-31 00:00:35 +04:00
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmLocalGenerator.h"
|
2002-09-04 23:24:49 +04:00
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
#include "cmake.h"
|
2002-08-31 00:00:35 +04:00
|
|
|
#include "cmMakefile.h"
|
2004-01-26 03:25:26 +03:00
|
|
|
#include "cmGeneratedFileStream.h"
|
2002-08-31 00:00:35 +04:00
|
|
|
|
|
|
|
cmLocalGenerator::cmLocalGenerator()
|
|
|
|
{
|
|
|
|
m_Makefile = new cmMakefile;
|
2002-09-04 23:24:49 +04:00
|
|
|
m_Makefile->SetLocalGenerator(this);
|
2004-03-10 00:28:44 +03:00
|
|
|
m_ExcludeFromAll = false;
|
|
|
|
m_Parent = 0;
|
2002-08-31 00:00:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmLocalGenerator::~cmLocalGenerator()
|
|
|
|
{
|
|
|
|
delete m_Makefile;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmLocalGenerator::Configure()
|
|
|
|
{
|
2002-10-04 16:59:02 +04:00
|
|
|
// set the PROJECT_SOURCE_DIR and PROJECT_BIN_DIR to default values
|
|
|
|
// just in case the project does not include a PROJECT command
|
|
|
|
m_Makefile->AddDefinition("PROJECT_BINARY_DIR",
|
|
|
|
m_Makefile->GetHomeOutputDirectory());
|
|
|
|
m_Makefile->AddDefinition("PROJECT_SOURCE_DIR",
|
|
|
|
m_Makefile->GetHomeDirectory());
|
2004-01-23 16:53:51 +03:00
|
|
|
|
2002-08-31 00:00:35 +04:00
|
|
|
// find & read the list file
|
|
|
|
std::string currentStart = m_Makefile->GetStartDirectory();
|
|
|
|
currentStart += "/CMakeLists.txt";
|
|
|
|
m_Makefile->ReadListFile(currentStart.c_str());
|
|
|
|
}
|
2002-09-04 23:24:49 +04:00
|
|
|
|
|
|
|
void cmLocalGenerator::SetGlobalGenerator(cmGlobalGenerator *gg)
|
|
|
|
{
|
2004-01-23 16:53:51 +03:00
|
|
|
m_GlobalGenerator = gg;
|
2002-09-04 23:24:49 +04:00
|
|
|
|
|
|
|
// setup the home directories
|
|
|
|
m_Makefile->SetHomeDirectory(
|
|
|
|
gg->GetCMakeInstance()->GetHomeDirectory());
|
|
|
|
m_Makefile->SetHomeOutputDirectory(
|
|
|
|
gg->GetCMakeInstance()->GetHomeOutputDirectory());
|
2004-01-23 16:53:51 +03:00
|
|
|
|
2002-09-10 23:37:52 +04:00
|
|
|
}
|
2002-09-15 16:54:16 +04:00
|
|
|
|
2003-12-22 23:16:46 +03:00
|
|
|
|
2002-09-15 16:54:16 +04:00
|
|
|
void cmLocalGenerator::ConfigureFinalPass()
|
2004-01-23 16:53:51 +03:00
|
|
|
{
|
|
|
|
m_Makefile->ConfigureFinalPass();
|
2002-09-15 16:54:16 +04:00
|
|
|
}
|
2003-12-22 23:16:46 +03:00
|
|
|
|
2004-01-26 03:25:26 +03:00
|
|
|
void cmLocalGenerator::GenerateInstallRules()
|
|
|
|
{
|
|
|
|
const cmTargets &tgts = m_Makefile->GetTargets();
|
|
|
|
const char* prefix
|
|
|
|
= m_Makefile->GetDefinition("CMAKE_INSTALL_PREFIX");
|
|
|
|
if (!prefix)
|
|
|
|
{
|
|
|
|
prefix = "/usr/local";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string file = m_Makefile->GetStartOutputDirectory();
|
2004-03-29 02:59:46 +04:00
|
|
|
std::string homedir = m_Makefile->GetHomeOutputDirectory();
|
|
|
|
std::string currdir = m_Makefile->GetCurrentOutputDirectory();
|
2004-01-27 00:24:35 +03:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(file);
|
2004-03-29 02:59:46 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(homedir);
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(currdir);
|
|
|
|
int toplevel_install = 0;
|
|
|
|
if ( currdir == homedir )
|
|
|
|
{
|
|
|
|
toplevel_install = 1;
|
|
|
|
}
|
2004-01-26 03:25:26 +03:00
|
|
|
file += "/cmake_install.cmake";
|
|
|
|
cmGeneratedFileStream tempFile(file.c_str());
|
|
|
|
std::ostream& fout = tempFile.GetStream();
|
|
|
|
|
|
|
|
fout << "# Install script for directory: " << m_Makefile->GetCurrentDirectory()
|
|
|
|
<< std::endl << std::endl;
|
|
|
|
|
2004-02-03 18:53:41 +03:00
|
|
|
const char* cmakeDebugPosfix = m_Makefile->GetDefinition("CMAKE_DEBUG_POSTFIX");
|
|
|
|
if ( cmakeDebugPosfix )
|
|
|
|
{
|
|
|
|
fout << "SET(CMAKE_DEBUG_POSTFIX \"" << cmakeDebugPosfix << "\")"
|
|
|
|
<< std::endl << std::endl;
|
|
|
|
}
|
|
|
|
|
2004-01-26 03:25:26 +03:00
|
|
|
std::string libOutPath = "";
|
|
|
|
if (m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH"))
|
|
|
|
{
|
|
|
|
libOutPath = m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH");
|
|
|
|
if(libOutPath.size())
|
|
|
|
{
|
|
|
|
if(libOutPath[libOutPath.size() -1] != '/')
|
|
|
|
{
|
|
|
|
libOutPath += "/";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string exeOutPath = "";
|
|
|
|
if (m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH"))
|
|
|
|
{
|
|
|
|
exeOutPath =
|
|
|
|
m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH");
|
|
|
|
if(exeOutPath.size())
|
|
|
|
{
|
|
|
|
if(exeOutPath[exeOutPath.size() -1] != '/')
|
|
|
|
{
|
|
|
|
exeOutPath += "/";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-06-01 19:30:59 +04:00
|
|
|
if ( libOutPath.size() == 0 )
|
|
|
|
{
|
|
|
|
// LIBRARY_OUTPUT_PATH not defined
|
|
|
|
libOutPath = currdir + "/";
|
|
|
|
}
|
|
|
|
if ( exeOutPath.size() == 0 )
|
|
|
|
{
|
|
|
|
// EXECUTABLE_OUTPUT_PATH not defined
|
|
|
|
exeOutPath = currdir + "/";
|
|
|
|
}
|
2004-01-26 03:25:26 +03:00
|
|
|
|
|
|
|
std::string destination;
|
|
|
|
for(cmTargets::const_iterator l = tgts.begin();
|
|
|
|
l != tgts.end(); l++)
|
|
|
|
{
|
2004-04-21 19:32:27 +04:00
|
|
|
const char* preinstall = l->second.GetProperty("PRE_INSTALL_SCRIPT");
|
|
|
|
const char* postinstall = l->second.GetProperty("POST_INSTALL_SCRIPT");
|
|
|
|
if ( preinstall )
|
|
|
|
{
|
|
|
|
fout << "INCLUDE(\"" << preinstall << "\")" << std::endl;
|
|
|
|
}
|
2004-01-26 03:25:26 +03:00
|
|
|
if (l->second.GetInstallPath() != "")
|
|
|
|
{
|
|
|
|
destination = prefix + l->second.GetInstallPath();
|
2004-01-27 00:24:35 +03:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(destination);
|
2004-01-26 03:25:26 +03:00
|
|
|
const char* dest = destination.c_str();
|
|
|
|
int type = l->second.GetType();
|
|
|
|
|
2004-03-28 05:59:44 +04:00
|
|
|
|
2004-01-26 03:25:26 +03:00
|
|
|
std::string fname;
|
|
|
|
const char* files;
|
|
|
|
// now install the target
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
|
|
|
fname = libOutPath;
|
|
|
|
fname += this->GetFullTargetName(l->first.c_str(), l->second);
|
2004-01-27 00:24:35 +03:00
|
|
|
files = fname.c_str();
|
2004-01-26 03:25:26 +03:00
|
|
|
this->AddInstallRule(fout, dest, type, files);
|
|
|
|
break;
|
2004-01-27 20:37:30 +03:00
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
{
|
|
|
|
// Special code to handle DLL
|
|
|
|
fname = libOutPath;
|
|
|
|
fname += this->GetFullTargetName(l->first.c_str(), l->second);
|
|
|
|
std::string ext = cmSystemTools::GetFilenameExtension(fname);
|
|
|
|
ext = cmSystemTools::LowerCase(ext);
|
|
|
|
if ( ext == ".dll" )
|
|
|
|
{
|
|
|
|
std::string libname = libOutPath;
|
|
|
|
libname += cmSystemTools::GetFilenameWithoutExtension(fname);
|
|
|
|
libname += ".lib";
|
|
|
|
files = libname.c_str();
|
|
|
|
this->AddInstallRule(fout, dest, cmTarget::STATIC_LIBRARY, files, true);
|
|
|
|
std::string dlldest = prefix + l->second.GetRuntimeInstallPath();
|
|
|
|
files = fname.c_str();
|
|
|
|
this->AddInstallRule(fout, dlldest.c_str(), type, files);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
files = fname.c_str();
|
2004-06-28 22:40:17 +04:00
|
|
|
std::string properties;
|
|
|
|
const char* lib_version = l->second.GetProperty("VERSION");
|
|
|
|
const char* lib_soversion = l->second.GetProperty("SOVERSION");
|
|
|
|
if(!m_Makefile->GetDefinition("CMAKE_SHARED_LIBRARY_SONAME_C_FLAG"))
|
|
|
|
{
|
|
|
|
// Versioning is supported only for shared libraries and modules,
|
|
|
|
// and then only when the platform supports an soname flag.
|
|
|
|
lib_version = 0;
|
|
|
|
lib_soversion = 0;
|
|
|
|
}
|
|
|
|
if ( lib_version )
|
|
|
|
{
|
|
|
|
properties += " VERSION ";
|
|
|
|
properties += lib_version;
|
|
|
|
}
|
|
|
|
if ( lib_soversion )
|
|
|
|
{
|
|
|
|
properties += " SOVERSION ";
|
|
|
|
properties += lib_soversion;
|
|
|
|
}
|
|
|
|
this->AddInstallRule(fout, dest, type, files, false, properties.c_str());
|
2004-01-27 20:37:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2004-01-26 03:25:26 +03:00
|
|
|
case cmTarget::EXECUTABLE:
|
|
|
|
fname = exeOutPath;
|
|
|
|
fname += this->GetFullTargetName(l->first.c_str(), l->second);
|
2004-01-27 00:24:35 +03:00
|
|
|
files = fname.c_str();
|
2004-01-26 03:25:26 +03:00
|
|
|
this->AddInstallRule(fout, dest, type, files);
|
|
|
|
break;
|
|
|
|
case cmTarget::INSTALL_FILES:
|
|
|
|
{
|
|
|
|
std::string sourcePath = m_Makefile->GetCurrentDirectory();
|
|
|
|
std::string binaryPath = m_Makefile->GetCurrentOutputDirectory();
|
|
|
|
sourcePath += "/";
|
|
|
|
binaryPath += "/";
|
|
|
|
const std::vector<std::string> &sf = l->second.GetSourceLists();
|
|
|
|
std::vector<std::string>::const_iterator i;
|
|
|
|
for (i = sf.begin(); i != sf.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string f = *i;
|
|
|
|
if(f.substr(0, sourcePath.length()) == sourcePath)
|
|
|
|
{
|
|
|
|
f = f.substr(sourcePath.length());
|
|
|
|
}
|
|
|
|
else if(f.substr(0, binaryPath.length()) == binaryPath)
|
|
|
|
{
|
|
|
|
f = f.substr(binaryPath.length());
|
|
|
|
}
|
|
|
|
|
2004-01-27 00:24:35 +03:00
|
|
|
files = i->c_str();
|
2004-01-26 03:25:26 +03:00
|
|
|
this->AddInstallRule(fout, dest, type, files);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmTarget::INSTALL_PROGRAMS:
|
|
|
|
{
|
|
|
|
std::string sourcePath = m_Makefile->GetCurrentDirectory();
|
|
|
|
std::string binaryPath = m_Makefile->GetCurrentOutputDirectory();
|
|
|
|
sourcePath += "/";
|
|
|
|
binaryPath += "/";
|
|
|
|
const std::vector<std::string> &sf = l->second.GetSourceLists();
|
|
|
|
std::vector<std::string>::const_iterator i;
|
|
|
|
for (i = sf.begin(); i != sf.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string f = *i;
|
|
|
|
if(f.substr(0, sourcePath.length()) == sourcePath)
|
|
|
|
{
|
|
|
|
f = f.substr(sourcePath.length());
|
|
|
|
}
|
|
|
|
else if(f.substr(0, binaryPath.length()) == binaryPath)
|
|
|
|
{
|
|
|
|
f = f.substr(binaryPath.length());
|
|
|
|
}
|
2004-01-27 00:24:35 +03:00
|
|
|
files = i->c_str();
|
2004-01-26 03:25:26 +03:00
|
|
|
this->AddInstallRule(fout, dest, type, files);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmTarget::UTILITY:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2004-04-21 19:32:27 +04:00
|
|
|
}
|
|
|
|
if ( postinstall )
|
|
|
|
{
|
|
|
|
fout << "INCLUDE(\"" << postinstall << "\")" << std::endl;
|
2004-01-26 03:25:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
cmMakefile* mf = this->GetMakefile();
|
|
|
|
if ( !mf->GetSubDirectories().empty() )
|
|
|
|
{
|
2004-03-10 00:28:44 +03:00
|
|
|
const std::vector<std::pair<cmStdString, bool> >& subdirs = mf->GetSubDirectories();
|
|
|
|
std::vector<std::pair<cmStdString, bool> >::const_iterator i = subdirs.begin();
|
2004-01-26 03:25:26 +03:00
|
|
|
for(; i != subdirs.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string odir = mf->GetCurrentOutputDirectory();
|
2004-03-10 00:28:44 +03:00
|
|
|
odir += "/" + (*i).first;
|
2004-01-27 00:24:35 +03:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(odir);
|
2004-05-07 00:06:18 +04:00
|
|
|
fout << "INCLUDE(\"" << odir.c_str()
|
|
|
|
<< "/cmake_install.cmake\")" << std::endl;
|
2004-01-26 03:25:26 +03:00
|
|
|
}
|
|
|
|
fout << std::endl;;
|
|
|
|
}
|
2004-03-29 02:59:46 +04:00
|
|
|
if ( toplevel_install )
|
|
|
|
{
|
2004-07-02 22:08:49 +04:00
|
|
|
fout << "FILE(WRITE \"" << homedir.c_str() << "/install_manifest.txt\" "
|
|
|
|
<< "\"\")" << std::endl;
|
2004-03-29 02:59:46 +04:00
|
|
|
fout << "FOREACH(file ${CMAKE_INSTALL_MANIFEST_FILES})" << std::endl
|
|
|
|
<< " FILE(APPEND \"" << homedir.c_str() << "/install_manifest.txt\" "
|
|
|
|
<< "\"${file}\\n\")" << std::endl
|
|
|
|
<< "ENDFOREACH(file)" << std::endl;
|
|
|
|
}
|
2004-01-26 03:25:26 +03:00
|
|
|
}
|
|
|
|
|
2004-01-27 20:37:30 +03:00
|
|
|
void cmLocalGenerator::AddInstallRule(std::ostream& fout, const char* dest,
|
2004-06-28 22:40:17 +04:00
|
|
|
int type, const char* files, bool optional /* = false */, const char* properties /* = 0 */)
|
2004-01-26 03:25:26 +03:00
|
|
|
{
|
|
|
|
std::string sfiles = files;
|
2004-01-27 00:24:35 +03:00
|
|
|
std::string destination = dest;
|
2004-01-26 03:25:26 +03:00
|
|
|
std::string stype;
|
|
|
|
switch ( type )
|
|
|
|
{
|
2004-01-27 20:37:30 +03:00
|
|
|
case cmTarget::INSTALL_PROGRAMS: stype = "PROGRAM"; break;
|
2004-02-29 02:59:19 +03:00
|
|
|
case cmTarget::EXECUTABLE: stype = "EXECUTABLE"; break;
|
2004-01-26 03:25:26 +03:00
|
|
|
case cmTarget::STATIC_LIBRARY: stype = "STATIC_LIBRARY"; break;
|
|
|
|
case cmTarget::SHARED_LIBRARY: stype = "SHARED_LIBRARY"; break;
|
|
|
|
case cmTarget::MODULE_LIBRARY: stype = "MODULE"; break;
|
|
|
|
case cmTarget::INSTALL_FILES:
|
|
|
|
default: stype = "FILE"; break;
|
|
|
|
}
|
2004-02-03 18:25:51 +03:00
|
|
|
std::string fname = cmSystemTools::GetFilenameName(sfiles.c_str());
|
2004-01-26 03:25:26 +03:00
|
|
|
fout
|
2004-02-03 18:25:51 +03:00
|
|
|
<< "MESSAGE(STATUS \"Installing " << destination.c_str()
|
|
|
|
<< "/" << fname.c_str() << "\")\n"
|
2004-01-27 00:29:36 +03:00
|
|
|
<< "FILE(INSTALL DESTINATION \"" << destination.c_str()
|
2004-06-28 22:40:17 +04:00
|
|
|
<< "\" TYPE " << stype.c_str() << (optional?" OPTIONAL":"") ;
|
|
|
|
if ( properties && *properties )
|
|
|
|
{
|
|
|
|
fout << " PROPERTIES" << properties;
|
|
|
|
}
|
|
|
|
fout
|
2004-01-27 20:37:30 +03:00
|
|
|
<< " FILES \"" << sfiles.c_str() << "\")\n";
|
2004-01-26 03:25:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string cmLocalGenerator::GetFullTargetName(const char* n,
|
|
|
|
const cmTarget& t)
|
|
|
|
{
|
|
|
|
const char* targetPrefix = t.GetProperty("PREFIX");
|
|
|
|
const char* targetSuffix = t.GetProperty("SUFFIX");
|
|
|
|
const char* prefixVar = 0;
|
|
|
|
const char* suffixVar = 0;
|
|
|
|
switch(t.GetType())
|
|
|
|
{
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
prefixVar = "CMAKE_STATIC_LIBRARY_PREFIX";
|
|
|
|
suffixVar = "CMAKE_STATIC_LIBRARY_SUFFIX";
|
|
|
|
break;
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
prefixVar = "CMAKE_SHARED_LIBRARY_PREFIX";
|
|
|
|
suffixVar = "CMAKE_SHARED_LIBRARY_SUFFIX";
|
|
|
|
break;
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
|
|
|
prefixVar = "CMAKE_SHARED_MODULE_PREFIX";
|
|
|
|
suffixVar = "CMAKE_SHARED_MODULE_SUFFIX";
|
|
|
|
break;
|
|
|
|
case cmTarget::EXECUTABLE:
|
|
|
|
targetSuffix = cmSystemTools::GetExecutableExtension();
|
|
|
|
case cmTarget::UTILITY:
|
|
|
|
case cmTarget::INSTALL_FILES:
|
|
|
|
case cmTarget::INSTALL_PROGRAMS:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// if there is no prefix on the target use the cmake definition
|
|
|
|
if(!targetPrefix && prefixVar)
|
|
|
|
{
|
2004-04-27 20:02:32 +04:00
|
|
|
targetPrefix = m_Makefile->GetSafeDefinition(prefixVar);
|
2004-01-26 03:25:26 +03:00
|
|
|
}
|
|
|
|
// if there is no suffix on the target use the cmake definition
|
|
|
|
if(!targetSuffix && suffixVar)
|
|
|
|
{
|
2004-04-27 20:02:32 +04:00
|
|
|
targetSuffix = m_Makefile->GetSafeDefinition(suffixVar);
|
2004-01-26 03:25:26 +03:00
|
|
|
}
|
|
|
|
std::string name = targetPrefix?targetPrefix:"";
|
|
|
|
name += n;
|
|
|
|
name += targetSuffix?targetSuffix:"";
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-22 23:16:46 +03:00
|
|
|
std::string cmLocalGenerator::ConvertToRelativeOutputPath(const char* p)
|
|
|
|
{
|
2004-03-31 19:01:52 +04:00
|
|
|
if ( !m_Makefile->IsOn("CMAKE_USE_RELATIVE_PATHS") )
|
2004-02-23 17:56:53 +03:00
|
|
|
{
|
|
|
|
return cmSystemTools::ConvertToOutputPath(p);
|
|
|
|
}
|
2004-10-14 23:09:20 +04:00
|
|
|
// copy to a string class
|
|
|
|
std::string pathIn = p;
|
|
|
|
// check to see if the path is already relative, it is
|
|
|
|
// considered relative if one of the following is true
|
|
|
|
// - has no / in it at all
|
|
|
|
// - does not start with / or drive leter :
|
|
|
|
// - starts with a ".."
|
|
|
|
if(pathIn.find('/') == pathIn.npos ||
|
|
|
|
(pathIn[0] != '/' && pathIn[1] != ':') ||
|
|
|
|
pathIn.find("..") == 0)
|
|
|
|
{
|
2004-10-15 00:50:38 +04:00
|
|
|
return cmSystemTools::ConvertToOutputPath(p);
|
2004-10-14 23:09:20 +04:00
|
|
|
}
|
|
|
|
|
2003-12-29 22:55:43 +03:00
|
|
|
// do not use relative paths for network build trees
|
|
|
|
// the network paths do not work
|
2003-12-24 23:02:25 +03:00
|
|
|
const char* outputDirectory = m_Makefile->GetHomeOutputDirectory();
|
2004-01-23 16:53:51 +03:00
|
|
|
if ( outputDirectory && *outputDirectory && *(outputDirectory+1) &&
|
2003-12-24 23:02:25 +03:00
|
|
|
outputDirectory[0] == '/' && outputDirectory[1] == '/' )
|
|
|
|
{
|
|
|
|
return cmSystemTools::ConvertToOutputPath(p);
|
|
|
|
}
|
2004-10-14 23:09:20 +04:00
|
|
|
// if the path is double quoted remove the double quotes
|
2003-12-30 16:41:04 +03:00
|
|
|
if(pathIn.size() && pathIn[0] == '\"')
|
|
|
|
{
|
|
|
|
pathIn = pathIn.substr(1, pathIn.size()-2);
|
2004-10-14 23:09:20 +04:00
|
|
|
}
|
|
|
|
// The first time this is called
|
|
|
|
// initialize m_CurrentOutputDirectory to contain
|
|
|
|
// the full path to the current output directory
|
|
|
|
// This has to be done here and not in the constructor
|
|
|
|
// because the output directory is not yet set in the constructor.
|
|
|
|
if(m_CurrentOutputDirectory.size() == 0)
|
2003-12-22 23:16:46 +03:00
|
|
|
{
|
2004-10-14 23:09:20 +04:00
|
|
|
m_CurrentOutputDirectory = cmSystemTools::CollapseFullPath(m_Makefile->GetCurrentOutputDirectory());
|
2003-12-22 23:16:46 +03:00
|
|
|
}
|
2004-10-14 23:09:20 +04:00
|
|
|
// Given that we are in m_CurrentOutputDirectory how to we
|
|
|
|
// get to pathIn with a relative path, store in ret
|
|
|
|
std::string ret = cmSystemTools::RelativePath(m_CurrentOutputDirectory.c_str(), pathIn.c_str());
|
|
|
|
// If the path is 0 sized make it a .
|
|
|
|
// this happens when pathIn is the same as m_CurrentOutputDirectory
|
|
|
|
if(ret.size() == 0)
|
2003-12-22 23:16:46 +03:00
|
|
|
{
|
2004-10-14 23:09:20 +04:00
|
|
|
ret = ".";
|
2003-12-22 23:16:46 +03:00
|
|
|
}
|
2004-10-14 23:09:20 +04:00
|
|
|
// if there was a trailing / there still is one, and
|
|
|
|
// if there was not one, there still is not one
|
|
|
|
if(ret[ret.size()-1] == '/' &&
|
|
|
|
pathIn[pathIn.size()-1] != '/')
|
2003-12-23 21:31:11 +03:00
|
|
|
{
|
2004-10-14 23:09:20 +04:00
|
|
|
ret.erase(ret.size()-1, 1);
|
2003-12-23 21:31:11 +03:00
|
|
|
}
|
2004-10-14 23:09:20 +04:00
|
|
|
if(ret[ret.size()-1] != '/' &&
|
|
|
|
pathIn[pathIn.size()-1] == '/')
|
2003-12-29 22:55:43 +03:00
|
|
|
{
|
2004-10-14 23:09:20 +04:00
|
|
|
ret += "/";
|
2003-12-29 22:55:43 +03:00
|
|
|
}
|
2004-10-14 23:09:20 +04:00
|
|
|
// Now convert the relative path to an output path
|
2003-12-22 23:16:46 +03:00
|
|
|
ret = cmSystemTools::ConvertToOutputPath(ret.c_str());
|
2004-10-14 23:09:20 +04:00
|
|
|
// finally return the path
|
|
|
|
// at this point it should be relative and in the correct format
|
|
|
|
// for the native build system. (i.e. \ for windows and / for unix,
|
|
|
|
// and correct escaping/quoting of spaces in the path
|
2003-12-22 23:16:46 +03:00
|
|
|
return ret;
|
|
|
|
}
|
2004-09-03 20:03:41 +04:00
|
|
|
|
|
|
|
|
2004-09-22 22:42:05 +04:00
|
|
|
|