diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-06-04 17:48:11 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-06-04 17:48:11 (GMT) |
commit | 003654670b55a98eddd3c69de081eddb82383937 (patch) | |
tree | 17b05c4981a64d5cfb7d0b7b6f53c6017b0a5b5c /Source/cmake.h | |
parent | 8fdca686b3d4659328dafd5501dd25daef4e711a (diff) | |
download | CMake-003654670b55a98eddd3c69de081eddb82383937.zip CMake-003654670b55a98eddd3c69de081eddb82383937.tar.gz CMake-003654670b55a98eddd3c69de081eddb82383937.tar.bz2 |
ENH: -U for removing variables now uses globbing expressions
-cmCacheManager: now also variables with type UNINITIALIZED are saved in
CMakeCache.txt, these are the vars defined using -DFOO=foo but without type
Alex
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index c148515..3e7b5fa 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -388,11 +388,11 @@ private: "for the project. This option may be used to specify a setting " \ "that takes priority over the project's default value. The option " \ "may be repeated for as many cache entries as desired."}, \ - {"-U <var>", "Remove one or more cmake cache entries.", \ + {"-U <globbing_expr>", "Remove matching entries from CMake cache.", \ "This option may be used to remove one or more variables from the " \ - "CMakeCache.txt file, so that CMake will search them again. All " \ - "variables which contain \"<var>\" will be removed. The option may be "\ - "repeated for as many cache entries as desired."}, \ + "CMakeCache.txt file, globbing expressions using * and ? are supported. "\ + "The option may be repeated for as many cache entries as desired.\n" \ + "Use with care, you can make your CMakeCache.txt non-working."}, \ {"-G <generator-name>", "Specify a makefile generator.", \ "CMake may support multiple native build systems on certain platforms. " \ "A makefile generator is responsible for generating a particular build " \ |