diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-04 15:57:22 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-04 15:57:22 (GMT) |
commit | 1e8914ada8834a9ed6e3a10a8575c14947df157e (patch) | |
tree | 3d84c1cdff204fb3025f0d1af5762d5c02d6872c /Source/cmake.h | |
parent | 3a211819410ba0433cf8b713e894683b2f612345 (diff) | |
download | CMake-1e8914ada8834a9ed6e3a10a8575c14947df157e.zip CMake-1e8914ada8834a9ed6e3a10a8575c14947df157e.tar.gz CMake-1e8914ada8834a9ed6e3a10a8575c14947df157e.tar.bz2 |
BUG: fix get make command problems.
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index cf0d7bf..602f152 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -170,7 +170,10 @@ class cmake * Given a variable name, return its value (as a string). */ const char* GetCacheDefinition(const char*) const; - + ///! Add an entry into the cache + void AddCacheEntry(const char* key, const char* value, + const char* helpString, + int type); /** * Execute commands during the build process. Supports options such * as echo, remove file etc. |