diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-03-10 18:39:38 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-03-10 18:39:38 (GMT) |
commit | 3ff6722934521151793e5ad798a48305fc5ec2fa (patch) | |
tree | 44c00d047860311a0f52effb115de3257488e6c4 /Source/cmake.h | |
parent | a79868206eb59e19fd0ebca72ba435cdbb8c6a89 (diff) | |
download | CMake-3ff6722934521151793e5ad798a48305fc5ec2fa.zip CMake-3ff6722934521151793e5ad798a48305fc5ec2fa.tar.gz CMake-3ff6722934521151793e5ad798a48305fc5ec2fa.tar.bz2 |
ENH: cleanup by removing all the olf local generate junk that i not longer needed
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 50024f7..ec553bd 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -204,12 +204,6 @@ class cmake /** Check if a command exists. */ bool CommandExists(const char* name) const; - /** - * Is cmake in the process of a local cmake invocation. If so, we know the - * cache is already configured and ready to go. - */ - bool GetLocal() { return m_Local; } - ///! Parse command line arguments void SetArgs(const std::vector<std::string>&); @@ -284,9 +278,6 @@ protected: ///! read in a cmake list file to initialize the cache void ReadListFile(const char *path); - ///! used by Run - int LocalGenerate(); - /** * Method called to check build system integrity at build time. * Returns 1 if CMake should rerun and 0 otherwise. @@ -306,7 +297,6 @@ private: ProgressCallback m_ProgressCallback; void* m_ProgressCallbackClientData; bool m_Verbose; - bool m_Local; bool m_InTryCompile; bool m_ScriptMode; std::string m_CMakeCommand; |