2001-02-27 01:13:30 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-02-27 01:13:30 +03: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.
|
2001-02-27 01:13:30 +03:00
|
|
|
|
2002-01-21 23:30:43 +03: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.
|
2001-02-27 01:13:30 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmFindFileCommand.h"
|
|
|
|
#include "cmCacheManager.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
|
|
|
// cmFindFileCommand
|
2001-11-27 02:24:47 +03:00
|
|
|
bool cmFindFileCommand::InitialPass(std::vector<std::string> const& argsIn)
|
2001-02-27 01:13:30 +03:00
|
|
|
{
|
2001-11-27 02:24:47 +03:00
|
|
|
if(argsIn.size() < 2)
|
2001-02-27 01:13:30 +03:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2001-11-27 02:24:47 +03:00
|
|
|
std::string helpString = "Where can the ";
|
|
|
|
helpString += argsIn[1] + " file be found";
|
2002-03-13 18:25:11 +03:00
|
|
|
size_t size = argsIn.size();
|
2002-12-12 02:13:33 +03:00
|
|
|
std::vector<std::string> args;
|
2001-11-27 02:24:47 +03:00
|
|
|
for(unsigned int j = 0; j < size; ++j)
|
|
|
|
{
|
|
|
|
if(argsIn[j] != "DOC")
|
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
args.push_back(argsIn[j]);
|
2001-11-27 02:24:47 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(j+1 < size)
|
|
|
|
{
|
|
|
|
helpString = argsIn[j+1];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-03-29 22:20:32 +03:00
|
|
|
|
2001-09-20 23:08:30 +04:00
|
|
|
std::vector<std::string>::const_iterator i = args.begin();
|
2001-02-27 01:13:30 +03:00
|
|
|
// Use the first argument as the name of something to be defined
|
|
|
|
const char* define = (*i).c_str();
|
|
|
|
i++; // move iterator to next arg
|
|
|
|
// Now check and see if the value has been stored in the cache
|
|
|
|
// already, if so use that value and don't look for the program
|
|
|
|
const char* cacheValue
|
2001-08-08 19:54:46 +04:00
|
|
|
= m_Makefile->GetDefinition(define);
|
2003-01-31 21:50:42 +03:00
|
|
|
if(cacheValue && !cmSystemTools::IsNOTFOUND(cacheValue))
|
2001-02-27 01:13:30 +03:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// if it is not in the cache, then search the system path
|
|
|
|
std::vector<std::string> path;
|
|
|
|
|
|
|
|
// add any user specified paths
|
|
|
|
for (unsigned int j = 2; j < args.size(); j++)
|
|
|
|
{
|
2001-09-20 18:54:29 +04:00
|
|
|
// Glob the entry in case of wildcards.
|
2002-03-06 02:41:24 +03:00
|
|
|
cmSystemTools::GlobDirs(args[j].c_str(), path);
|
2001-02-27 01:13:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// add the standard path
|
|
|
|
cmSystemTools::GetPath(path);
|
|
|
|
for(unsigned int k=0; k < path.size(); k++)
|
|
|
|
{
|
|
|
|
std::string tryPath = path[k];
|
|
|
|
tryPath += "/";
|
|
|
|
tryPath += *i;
|
|
|
|
if(cmSystemTools::FileExists(tryPath.c_str()))
|
|
|
|
{
|
|
|
|
// Save the value in the cache
|
2001-08-08 19:54:46 +04:00
|
|
|
m_Makefile->AddCacheDefinition(define,
|
|
|
|
tryPath.c_str(),
|
|
|
|
helpString.c_str(),
|
|
|
|
cmCacheManager::FILEPATH);
|
2001-02-27 01:13:30 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2003-01-31 21:50:42 +03:00
|
|
|
std::string s = args[0] + "-NOTFOUND";
|
2001-09-18 00:34:41 +04:00
|
|
|
m_Makefile->AddCacheDefinition(args[0].c_str(),
|
2003-01-31 21:50:42 +03:00
|
|
|
s.c_str(),
|
2001-09-18 00:34:41 +04:00
|
|
|
helpString.c_str(),
|
2001-10-18 21:03:37 +04:00
|
|
|
cmCacheManager::FILEPATH);
|
2001-09-18 00:34:41 +04:00
|
|
|
return true;
|
2001-02-27 01:13:30 +03:00
|
|
|
}
|
|
|
|
|