diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-20 22:51:03 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-20 22:51:03 (GMT) |
commit | f7fae15d39d6e290686487778485734227415088 (patch) | |
tree | 4d9b374c6b9cbee02781bf442ab078cfdd449f87 /Source/cmake.h | |
parent | f3d63c1932f5a9d2b159ccddf9acd09f8c5358c2 (diff) | |
download | CMake-f7fae15d39d6e290686487778485734227415088.zip CMake-f7fae15d39d6e290686487778485734227415088.tar.gz CMake-f7fae15d39d6e290686487778485734227415088.tar.bz2 |
ENH: add command line arguments to set cache entries
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index ff9d11f..4502d32 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -65,11 +65,10 @@ class cmake */ int Generate(const std::vector<std::string>&, bool buildMakefiles = true); - /** - * Generate the SourceFilesList from the SourceLists. This should only be - * done once to be safe. - */ + ///! Parse command line arguments void SetArgs(cmMakefile& builder, const std::vector<std::string>&); + ///! Parse command line arguments that might set cache values + void SetCacheArgs(cmMakefile& builder, const std::vector<std::string>&); /** * Generate CMAKE_ROOT and CMAKE_COMMAND cache entries |