diff options
Diffstat (limited to 'Source/cmFindPathCommand.cxx')
-rw-r--r-- | Source/cmFindPathCommand.cxx | 3 |
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()) |