diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-07-19 21:16:23 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-07-19 21:16:23 (GMT) |
commit | 9062e6d922956bd374d626498a382d02804bbf83 (patch) | |
tree | 11175f8b368be4559d3165f99dea659756ac6433 /Source/cmake.h | |
parent | a13713818cea07e565bdda8463f054e3d2ccd1fa (diff) | |
download | CMake-9062e6d922956bd374d626498a382d02804bbf83.zip CMake-9062e6d922956bd374d626498a382d02804bbf83.tar.gz CMake-9062e6d922956bd374d626498a382d02804bbf83.tar.bz2 |
ENH: fix for bug 1866, make -G,-D -C options allow for space between arg and value
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 4e61c5f..0d6f7d9 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -318,20 +318,20 @@ private: }; #define CMAKE_STANDARD_OPTIONS_TABLE \ - {"-C<initial-cache>", "Pre-load cmake cache from given file.", \ + {"-C <initial-cache>", "Pre-load cmake cache from given file.", \ "When cmake is first run in an empty build tree, it creates a " \ "CMakeCache.txt file and populates it with customizable settings " \ "for the project. This option may be used to specify a file from " \ "which to load cache entries before the first pass through " \ "the project's cmake listfiles. The loaded entries take priority " \ "over the project's default values."}, \ - {"-D<var>:<type>=<value>", "Create a cmake cache entry.", \ + {"-D <var>:<type>=<value>", "Create a cmake cache entry.", \ "When cmake is first run in an empty build tree, it creates a " \ "CMakeCache.txt file and populates it with customizable settings " \ "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."}, \ - {"-G<generator-name>", "Specify a makefile generator.", \ + {"-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 " \ "system. Possible generator names are specified in the Generators " \ |