summaryrefslogtreecommitdiffstats
path: root/Source/cmake.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-09-13 17:48:14 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-09-13 17:48:14 (GMT)
commitee592e9b9854f06d492cd5865678e6b67ca56c94 (patch)
tree08073f0e82a3a165a4a5f60914d310ba3b0bbd8e /Source/cmake.h
parent9d59d651a149ff230621234fdb723d383e502e45 (diff)
downloadCMake-ee592e9b9854f06d492cd5865678e6b67ca56c94.zip
CMake-ee592e9b9854f06d492cd5865678e6b67ca56c94.tar.gz
CMake-ee592e9b9854f06d492cd5865678e6b67ca56c94.tar.bz2
some fixes for try compile
Diffstat (limited to 'Source/cmake.h')
-rw-r--r--Source/cmake.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmake.h b/Source/cmake.h
index 60bde26..3cf1a51 100644
--- a/Source/cmake.h
+++ b/Source/cmake.h
@@ -181,6 +181,11 @@ class cmake
///! Is this cmake running as a result of a TRY_COMPILE command
void SetIsInTryCompile(bool i) { m_InTryCompile = i; }
+ /**
+ * Generate CMAKE_ROOT and CMAKE_COMMAND cache entries
+ */
+ int AddCMakePaths(const char *arg0);
+
protected:
typedef std::map<cmStdString, cmCommand*> RegisteredCommandsMap;
RegisteredCommandsMap m_Commands;
@@ -199,11 +204,6 @@ protected:
///! read in a cmake list file to initialize the cache
void ReadListFile(const char *path);
- /**
- * Generate CMAKE_ROOT and CMAKE_COMMAND cache entries
- */
- int AddCMakePaths(const char *arg0);
-
///! used by Run
int LocalGenerate();