summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-05-02 15:51:12 -0400
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-05-02 15:51:12 -0400
commite4af567bd224ffcac53d81e6d8492ca415f30ea4 (patch)
treed04c0241696db2d506b17a87561f13afeb89d492
parentf812d053f600e5cbb2072432cd549c8777b3af74 (diff)
downloadcmake-e4af567bd224ffcac53d81e6d8492ca415f30ea4.tar.gz
ENH: Make AddCMakePath public
-rw-r--r--Source/cmake.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmake.h b/Source/cmake.h
index ec553bd58e..94b875fb2e 100644
--- a/Source/cmake.h
+++ b/Source/cmake.h
@@ -256,6 +256,11 @@ class cmake
bool HasWrittenFile(const char* file);
void CleanupWrittenFiles();
+ /**
+ * Generate CMAKE_ROOT and CMAKE_COMMAND cache entries
+ */
+ int AddCMakePaths(const char *arg0);
+
protected:
typedef cmGlobalGenerator* (*CreateGeneratorFunctionType)();
typedef std::map<cmStdString, CreateGeneratorFunctionType> RegisteredGeneratorsMap;
@@ -284,11 +289,6 @@ protected:
*/
int CheckBuildSystem();
- /**
- * Generate CMAKE_ROOT and CMAKE_COMMAND cache entries
- */
- int AddCMakePaths(const char *arg0);
-
void SetDirectoriesFromFile(const char* arg);
cmVariableWatch* m_VariableWatch;