diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-11-21 21:32:39 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-11-21 21:32:39 (GMT) |
commit | 0c24570ee429c9884fdbf9ba0dd5e55133114432 (patch) | |
tree | 5ab4825243b670e57a05d1bffa4de5f0ddc8387a /Source/cmMakefile.h | |
parent | 46b9a884ac01aeb7fc0e6b5eb92a1624536eb4ee (diff) | |
download | CMake-0c24570ee429c9884fdbf9ba0dd5e55133114432.zip CMake-0c24570ee429c9884fdbf9ba0dd5e55133114432.tar.gz CMake-0c24570ee429c9884fdbf9ba0dd5e55133114432.tar.bz2 |
BUG: fix issue with -D and cache force
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 971496d..5a12d2e 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -264,7 +264,8 @@ public: ///! Add a definition to this makefile and the global cmake cache. void AddCacheDefinition(const char* name, const char* value, const char* doc, - cmCacheManager::CacheEntryType type); + cmCacheManager::CacheEntryType type, + bool force = false); /** * Add bool variable definition to the build. |