2004-04-24 00:20:36 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
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 "cmGetDirectoryPropertyCommand.h"
|
|
|
|
|
|
|
|
#include "cmake.h"
|
|
|
|
|
|
|
|
// cmGetDirectoryPropertyCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmGetDirectoryPropertyCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2004-04-24 00:20:36 +04:00
|
|
|
{
|
|
|
|
if(args.size() < 2 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-09-13 18:39:42 +04:00
|
|
|
std::vector<std::string>::const_iterator i = args.begin();
|
|
|
|
std::string variable = *i;
|
|
|
|
++i;
|
2004-04-24 00:20:36 +04:00
|
|
|
std::string output = "";
|
2005-09-13 18:39:42 +04:00
|
|
|
|
|
|
|
// get the directory argument if there is one
|
2006-03-15 19:02:08 +03:00
|
|
|
cmMakefile *dir = this->Makefile;
|
2005-09-13 18:39:42 +04:00
|
|
|
if (*i == "DIRECTORY")
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i == args.end())
|
|
|
|
{
|
|
|
|
this->SetError
|
|
|
|
("DIRECTORY argument provided without subsequent arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
std::string sd = *i;
|
|
|
|
// make sure the start dir is a full path
|
|
|
|
if (!cmSystemTools::FileIsFullPath(sd.c_str()))
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
sd = this->Makefile->GetStartDirectory();
|
2005-09-13 18:39:42 +04:00
|
|
|
sd += "/";
|
|
|
|
sd += *i;
|
|
|
|
}
|
2006-10-16 23:18:03 +04:00
|
|
|
|
|
|
|
// The local generators are associated with collapsed paths.
|
|
|
|
sd = cmSystemTools::CollapseFullPath(sd.c_str());
|
|
|
|
|
2005-09-13 18:39:42 +04:00
|
|
|
// lookup the makefile from the directory name
|
|
|
|
cmLocalGenerator *lg =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetLocalGenerator()->GetGlobalGenerator()->
|
2005-09-13 18:39:42 +04:00
|
|
|
FindLocalGenerator(sd.c_str());
|
|
|
|
if (!lg)
|
|
|
|
{
|
|
|
|
this->SetError
|
2006-05-10 23:56:00 +04:00
|
|
|
("DIRECTORY argument provided but requested directory not found. "
|
|
|
|
"This could be because the directory argument was invalid or, "
|
|
|
|
"it is valid but has not been processed yet.");
|
2005-09-13 18:39:42 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
dir = lg->GetMakefile();
|
|
|
|
++i;
|
|
|
|
}
|
2004-04-24 00:20:36 +04:00
|
|
|
|
2005-09-13 18:39:42 +04:00
|
|
|
// OK, now we have the directory to process, we just get the requested
|
|
|
|
// information out of it
|
|
|
|
|
2007-07-10 21:52:41 +04:00
|
|
|
if ( *i == "DEFINITION" )
|
2005-09-13 18:39:42 +04:00
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i == args.end())
|
|
|
|
{
|
2006-05-10 23:56:00 +04:00
|
|
|
this->SetError("A request for a variable definition was made without "
|
|
|
|
"providing the name of the variable to get.");
|
2005-09-13 18:39:42 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
output = dir->GetSafeDefinition(i->c_str());
|
2007-07-10 21:52:41 +04:00
|
|
|
this->Makefile->AddDefinition(variable.c_str(), output.c_str());
|
2007-07-12 18:17:37 +04:00
|
|
|
return true;
|
2005-09-13 18:39:42 +04:00
|
|
|
}
|
2007-07-10 21:52:41 +04:00
|
|
|
|
|
|
|
const char *prop = dir->GetProperty(i->c_str());
|
|
|
|
if (prop)
|
2004-04-24 00:20:36 +04:00
|
|
|
{
|
2007-07-10 21:52:41 +04:00
|
|
|
this->Makefile->AddDefinition(variable.c_str(), prop);
|
2005-04-05 00:43:44 +04:00
|
|
|
return true;
|
2004-04-24 00:20:36 +04:00
|
|
|
}
|
2007-07-10 21:52:41 +04:00
|
|
|
this->Makefile->AddDefinition(variable.c_str(), "");
|
2004-04-24 00:20:36 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|