diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-05-29 15:14:05 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-05-29 15:14:05 (GMT) |
commit | 1e09bc5dde0dd4419861e510ea339ecf98a580a0 (patch) | |
tree | 7c422e3c562b20a55beb5c80f4c6e2273e632673 /Source/cmake.h | |
parent | 0876c19dc89c0785ffe491aa095c231709cc5c7a (diff) | |
download | CMake-1e09bc5dde0dd4419861e510ea339ecf98a580a0.zip CMake-1e09bc5dde0dd4419861e510ea339ecf98a580a0.tar.gz CMake-1e09bc5dde0dd4419861e510ea339ecf98a580a0.tar.bz2 |
ENH: Abstract pre configure check in a separate method
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 53f2b07..f01c065 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -235,6 +235,9 @@ class cmake cmVariableWatch* GetVariableWatch() { return m_VariableWatch; } void GetCommandDocumentation(std::vector<cmDocumentationEntry>&) const; + + ///! Do all the checks before running configure + int DoPreConfigureChecks(); protected: typedef std::map<cmStdString, cmCommand*> RegisteredCommandsMap; |