| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- /*=========================================================================
- Program: CMake - Cross-Platform Makefile Generator
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
- 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 "cmLocalGenerator.h"
- #include "cmGlobalGenerator.h"
- #include "cmake.h"
- #include "cmMakefile.h"
- cmLocalGenerator::cmLocalGenerator()
- {
- m_Makefile = new cmMakefile;
- m_Makefile->SetLocalGenerator(this);
- }
- cmLocalGenerator::~cmLocalGenerator()
- {
- delete m_Makefile;
- }
- void cmLocalGenerator::Configure()
- {
- // 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());
-
- // find & read the list file
- std::string currentStart = m_Makefile->GetStartDirectory();
- currentStart += "/CMakeLists.txt";
- m_Makefile->ReadListFile(currentStart.c_str());
- }
- void cmLocalGenerator::SetGlobalGenerator(cmGlobalGenerator *gg)
- {
- m_GlobalGenerator = gg;
- // setup the home directories
- m_Makefile->SetHomeDirectory(
- gg->GetCMakeInstance()->GetHomeDirectory());
- m_Makefile->SetHomeOutputDirectory(
- gg->GetCMakeInstance()->GetHomeOutputDirectory());
-
- }
- void cmLocalGenerator::ConfigureFinalPass()
- {
- m_Makefile->ConfigureFinalPass();
- }
- std::string cmLocalGenerator::ConvertToRelativeOutputPath(const char* p)
- {
- // The first time this is called, initialize all
- // the path ivars that are used. This can not
- // be moved to the constructor because all the paths are not set yet.
- if(m_CurrentOutputDirectory.size() == 0)
- {
- m_CurrentOutputDirectory = m_Makefile->GetCurrentOutputDirectory();
- m_HomeOutputDirectory = m_Makefile->GetHomeOutputDirectory();
- m_HomeDirectory = m_Makefile->GetHomeDirectory();
- if(m_RelativePathToSourceDir.size() == 0)
- {
- m_RelativePathToSourceDir = cmSystemTools::RelativePath(
- m_CurrentOutputDirectory.c_str(),
- m_HomeDirectory.c_str());
- std::string path = m_CurrentOutputDirectory;
- cmSystemTools::ReplaceString(path, m_HomeOutputDirectory.c_str(), "");
- unsigned i;
- m_RelativePathToBinaryDir = "";
- for(i =0; i < path.size(); ++i)
- {
- if(path[i] == '/')
- {
- m_RelativePathToBinaryDir += "../";
- }
- }
- }
- m_HomeOutputDirectoryNoSlash = m_HomeOutputDirectory;
- m_HomeOutputDirectory += "/";
- m_CurrentOutputDirectory += "/";
- }
- // Do the work of converting to a relative path
- std::string pathIn = p;
- std::string ret = pathIn;
- if(m_CurrentOutputDirectory.size() <= ret.size())
- {
- std::string sub = ret.substr(0, m_CurrentOutputDirectory.size());
- if(
- #if defined(_WIN32) || defined(__APPLE__)
- cmSystemTools::LowerCase(sub) ==
- cmSystemTools::LowerCase(m_CurrentOutputDirectory)
- #else
- sub == m_CurrentOutputDirectory
- #endif
- )
- {
- ret = ret.substr(m_CurrentOutputDirectory.size(), ret.npos);
- }
- }
- if(m_HomeDirectory.size() <= ret.size())
- {
- std::string sub = ret.substr(0, m_HomeDirectory.size());
- if(
- #if defined(_WIN32) || defined(__APPLE__)
- cmSystemTools::LowerCase(sub) ==
- cmSystemTools::LowerCase(m_HomeDirectory)
- #else
- sub == m_HomeDirectory
- #endif
- )
- {
- ret = m_RelativePathToSourceDir + ret.substr(m_HomeDirectory.size(), ret.npos);
- }
- }
- if(m_HomeOutputDirectory.size() <= ret.size())
- {
- std::string sub = ret.substr(0, m_HomeOutputDirectory.size());
- if(
- #if defined(_WIN32) || defined(__APPLE__)
- cmSystemTools::LowerCase(sub) ==
- cmSystemTools::LowerCase(m_HomeOutputDirectory)
- #else
- sub == m_HomeOutputDirectory
- #endif
- )
- {
- ret = m_RelativePathToBinaryDir + ret.substr(m_HomeOutputDirectory.size(), ret.npos);
- }
- }
-
- std::string relpath = m_RelativePathToBinaryDir;
- if(relpath.size())
- {
- relpath.erase(relpath.size()-1, 1);
- }
- else
- {
- relpath = ".";
- }
- if(
- #if defined(_WIN32) || defined(__APPLE__)
- cmSystemTools::LowerCase(ret) ==
- cmSystemTools::LowerCase(m_HomeOutputDirectoryNoSlash)
- #else
- ret == m_HomeOutputDirectoryNoSlash
- #endif
- )
- {
- ret = relpath;
- }
- ret = cmSystemTools::ConvertToOutputPath(ret.c_str());
- return ret;
- }
|