summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.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/cmCTest.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/cmCTest.cxx')
-rw-r--r--Source/cmCTest.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 3822947..ee40dff 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -22,7 +22,6 @@
#include "cmLocalGenerator.h"
#include "cmGlobalGenerator.h"
#include <cmsys/Directory.hxx>
-#include "cmGlob.h"
#include "cmDynamicLoader.h"
#include "cmGeneratedFileStream.h"
#include "cmCTestCommand.h"
@@ -41,6 +40,7 @@
#include <cmsys/RegularExpression.hxx>
#include <cmsys/Process.h>
+#include <cmsys/Glob.hxx>
#include <stdlib.h>
#include <math.h>
@@ -1876,7 +1876,7 @@ int cmCTest::ReadCustomConfigurationFileTree(const char* dir)
std::string rexpr = dir;
rexpr += "/CTestCustom.ctest";
- cmGlob gl;
+ cmsys::Glob gl;
gl.RecurseOn();
gl.FindFiles(rexpr);
std::vector<std::string>& files = gl.GetFiles();