diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-12-15 01:31:27 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-12-15 01:31:27 (GMT) |
commit | a5e76555bf9ac5fac6876ba73f8c3a7cdcabc351 (patch) | |
tree | 57b6daf9dd561b16c7d63345993b3370808ef7d5 /Source/kwsys/SystemTools.hxx.in | |
parent | 0304073ea6cafadd612fe9bbcc06dcaa6131f1e4 (diff) | |
download | CMake-a5e76555bf9ac5fac6876ba73f8c3a7cdcabc351.zip CMake-a5e76555bf9ac5fac6876ba73f8c3a7cdcabc351.tar.gz CMake-a5e76555bf9ac5fac6876ba73f8c3a7cdcabc351.tar.bz2 |
BUG: fix for bug 6136 make sure includes are not directories
Diffstat (limited to 'Source/kwsys/SystemTools.hxx.in')
-rw-r--r-- | Source/kwsys/SystemTools.hxx.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/kwsys/SystemTools.hxx.in b/Source/kwsys/SystemTools.hxx.in index 568643b..4845851 100644 --- a/Source/kwsys/SystemTools.hxx.in +++ b/Source/kwsys/SystemTools.hxx.in @@ -270,9 +270,12 @@ public: static kwsys_stl::string ConvertToWindowsOutputPath(const char*); /** - * Return true if a file exists in the current directory + * Return true if a file exists in the current directory. + * If isFile = true, then make sure the file is a file and + * not a directory. If isFile = false, then return true + * if it is a file or a directory. */ - static bool FileExists(const char* filename); + static bool FileExists(const char* filename, bool isFile=false); /** * Return file length |