summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r--Source/cmSystemTools.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h
index 8024617..623a6ed 100644
--- a/Source/cmSystemTools.h
+++ b/Source/cmSystemTools.h
@@ -19,6 +19,8 @@
#include "cmStandardIncludes.h"
+class cmMakefile;
+
/** \class cmSystemTools
* \brief A collection of useful functions for CMake.
*
@@ -225,7 +227,8 @@ public:
///! Find a library in the system PATH, with optional extra paths.
static std::string FindLibrary(const char* name,
- const std::vector<std::string>& path);
+ const std::vector<std::string>& path,
+ const cmMakefile *makefile = 0);
///! return true if the file is a directory.
static bool FileIsDirectory(const char* name);