diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-09-13 17:48:14 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-09-13 17:48:14 (GMT) |
commit | ee592e9b9854f06d492cd5865678e6b67ca56c94 (patch) | |
tree | 08073f0e82a3a165a4a5f60914d310ba3b0bbd8e /Source/cmake.h | |
parent | 9d59d651a149ff230621234fdb723d383e502e45 (diff) | |
download | CMake-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.h | 10 |
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(); |