summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2002-05-12 11:31:45 -0400
committerSebastien Barre <sebastien.barre@kitware.com>2002-05-12 11:31:45 -0400
commit1ad05f9e6d423187b4426be6117820cb791e86ba (patch)
tree84bca8818e63c26032792349c8a5c11e95f44501 /Source
parentce314986375cc2f2675266b7cbc6a46759bdeee2 (diff)
downloadcmake-1ad05f9e6d423187b4426be6117820cb791e86ba.tar.gz
ENH/FIX: add NO_SYSTEM_PATH option + fix command usage
Diffstat (limited to 'Source')
-rw-r--r--Source/cmFindProgramCommand.cxx9
-rw-r--r--Source/cmFindProgramCommand.h7
2 files changed, 12 insertions, 4 deletions
diff --git a/Source/cmFindProgramCommand.cxx b/Source/cmFindProgramCommand.cxx
index 3d24899156..c675973661 100644
--- a/Source/cmFindProgramCommand.cxx
+++ b/Source/cmFindProgramCommand.cxx
@@ -76,6 +76,7 @@ bool cmFindProgramCommand::InitialPass(std::vector<std::string> const& argsIn)
bool foundName = false;
bool foundPath = false;
bool doingNames = true;
+ bool no_system_path = false;
for (unsigned int j = 1; j < args.size(); ++j)
{
if(args[j] == "NAMES")
@@ -88,6 +89,10 @@ bool cmFindProgramCommand::InitialPass(std::vector<std::string> const& argsIn)
doingNames = false;
foundPath = true;
}
+ else if (args[j] == "NO_SYSTEM_PATH")
+ {
+ no_system_path = true;
+ }
else
{
if(doingNames)
@@ -123,7 +128,9 @@ bool cmFindProgramCommand::InitialPass(std::vector<std::string> const& argsIn)
i != names.end() ; ++i)
{
// Try to find the program.
- std::string result = cmSystemTools::FindProgram(i->c_str(), path);
+ std::string result = cmSystemTools::FindProgram(i->c_str(),
+ path,
+ no_system_path);
if(result != "")
{
// Save the value in the cache
diff --git a/Source/cmFindProgramCommand.h b/Source/cmFindProgramCommand.h
index ae213386e0..1fff696e9a 100644
--- a/Source/cmFindProgramCommand.h
+++ b/Source/cmFindProgramCommand.h
@@ -70,11 +70,12 @@ public:
virtual const char* GetFullDocumentation()
{
return
- "FIND_PROGRAM(NAME executable1 extrapath extrapath ... [DOC helpstring]) "
+ "FIND_PROGRAM(DEFINE_NAME executableName [NAMES name1 name2 name3...] [PATHS path1 path2 path3...] [NO_SYSTEM_PATH] [DOC helpstring]) "
"Find the executable in the system PATH or in any extra paths specified in the command."
- "A cache entry called NAME is created to store the result. NOTFOUND is the value"
+ "A cache entry called DEFILE_NAME is created to store the result. NOTFOUND is the value"
" used if the program was not found. If DOC is specified the next argument is the "
- "documentation string for the cache entry NAME.";
+ "documentation string for the cache entry NAME."
+ "If NO_SYSTEM_PATH is specified the contents of system PATH is not used";
}
cmTypeMacro(cmFindProgramCommand, cmCommand);