summaryrefslogtreecommitdiffstats
path: root/Source/cmFindPathCommand.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-21 17:54:31 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-21 17:54:31 (GMT)
commit15d7dd9937f63e33dc98c75169d34953a222a20c (patch)
treef9a5d1889f351725d7a556583e874f9ca539b1f5 /Source/cmFindPathCommand.cxx
parentbcfca6e1c1d5ca328a683eda8aa68153681f526f (diff)
downloadCMake-15d7dd9937f63e33dc98c75169d34953a222a20c.zip
CMake-15d7dd9937f63e33dc98c75169d34953a222a20c.tar.gz
CMake-15d7dd9937f63e33dc98c75169d34953a222a20c.tar.bz2
ENH: Remove cmGlob and use glob from kwsys
Diffstat (limited to 'Source/cmFindPathCommand.cxx')
-rw-r--r--Source/cmFindPathCommand.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmFindPathCommand.cxx b/Source/cmFindPathCommand.cxx
index c24d127..2845e86 100644
--- a/Source/cmFindPathCommand.cxx
+++ b/Source/cmFindPathCommand.cxx
@@ -17,6 +17,7 @@
#include "cmFindPathCommand.h"
#include "cmCacheManager.h"
+#include <cmsys/Glob.hxx>
cmFindPathCommand::cmFindPathCommand()
{
@@ -170,7 +171,7 @@ std::string cmFindPathCommand::FindHeaderInFramework(std::string& file,
cmStdString glob = dir;
glob += "/*/Headers/";
glob += file;
- cmGlob globIt;
+ cmsys::Glob globIt;
globIt.FindFiles(glob);
std::vector<std::string> files = globIt.GetFiles();
if(files.size())