diff options
author | Berk Geveci <berk.geveci@kitware.com> | 2001-08-16 15:41:44 (GMT) |
---|---|---|
committer | Berk Geveci <berk.geveci@kitware.com> | 2001-08-16 15:41:44 (GMT) |
commit | 3b9f97f32d019520c372551ab4c6a321cb560094 (patch) | |
tree | 2a365aa2b73ea78499bee77b045e93d58adfb52c /Source/cmLoadCacheCommand.h | |
parent | 06a0f67f93435e49d14c45c234a0bf2246b28b83 (diff) | |
download | CMake-3b9f97f32d019520c372551ab4c6a321cb560094.zip CMake-3b9f97f32d019520c372551ab4c6a321cb560094.tar.gz CMake-3b9f97f32d019520c372551ab4c6a321cb560094.tar.bz2 |
Adding new options to LoadCache.
Diffstat (limited to 'Source/cmLoadCacheCommand.h')
-rw-r--r-- | Source/cmLoadCacheCommand.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/cmLoadCacheCommand.h b/Source/cmLoadCacheCommand.h index a184f88..3a80af9 100644 --- a/Source/cmLoadCacheCommand.h +++ b/Source/cmLoadCacheCommand.h @@ -88,8 +88,12 @@ public: virtual const char* GetFullDocumentation() { return - "LOAD_CACHE(pathToCacheFile)\n" - "Load in the values from another cache. This is useful for a project that depends on another project built in a different tree."; + "LOAD_CACHE(pathToCacheFile [EXCLUDE entry1...] [INCLUDE_INTERNALS entry1...])\n" + "Load in the values from another cache. This is useful for a project " + "that depends on another project built in a different tree." + "EXCLUDE option can be used to provide a list of entries to be included." + "INCLUDE_INTERNALS can be used to provide a list of internal entries" + "to be included. Normally, no internal entries are brougt in."; } cmTypeMacro(cmLoadCacheCommand, cmCommand); |