Fix some whitespace errors in docs.
Remove trailing whitespace and add additional whitespace where necessary.
This commit is contained in:
parent
150bc7da3d
commit
3580b9f338
|
@ -27,14 +27,14 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
|
|||
"The path to the top level of the build tree.",
|
||||
"This is the full path to the top level of the current CMake "
|
||||
"build tree. For an in-source build, this would be the same "
|
||||
"as CMAKE_SOURCE_DIR. ", false,
|
||||
"as CMAKE_SOURCE_DIR.", false,
|
||||
"Variables that Provide Information");
|
||||
cm->DefineProperty
|
||||
("CMAKE_SOURCE_DIR", cmProperty::VARIABLE,
|
||||
"The path to the top level of the source tree.",
|
||||
"This is the full path to the top level of the current CMake "
|
||||
"source tree. For an in-source build, this would be the same "
|
||||
"as CMAKE_BINARY_DIR. ", false,
|
||||
"as CMAKE_BINARY_DIR.", false,
|
||||
"Variables that Provide Information");
|
||||
cm->DefineProperty
|
||||
("CMAKE_CURRENT_BINARY_DIR", cmProperty::VARIABLE,
|
||||
|
@ -100,7 +100,7 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
|
|||
|
||||
cm->DefineProperty
|
||||
("CMAKE_SCRIPT_MODE_FILE", cmProperty::VARIABLE,
|
||||
"Full path to the -P script file currently being processed. ",
|
||||
"Full path to the -P script file currently being processed.",
|
||||
"When run in -P script mode, CMake sets this variable to the full "
|
||||
"path of the script file. When run to configure a CMakeLists.txt "
|
||||
"file, this variable is not set.", false,
|
||||
|
@ -108,14 +108,14 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
|
|||
|
||||
cm->DefineProperty
|
||||
("CMAKE_ARGC", cmProperty::VARIABLE,
|
||||
"Number of command line arguments passed to CMake in script mode. ",
|
||||
"Number of command line arguments passed to CMake in script mode.",
|
||||
"When run in -P script mode, CMake sets this variable to the number "
|
||||
"of command line arguments. See also CMAKE_ARGV0, 1, 2 ... ", false,
|
||||
"of command line arguments. See also CMAKE_ARGV0, 1, 2 ...", false,
|
||||
"Variables that Provide Information");
|
||||
|
||||
cm->DefineProperty
|
||||
("CMAKE_ARGV0", cmProperty::VARIABLE,
|
||||
"Command line argument passed to CMake in script mode. ",
|
||||
"Command line argument passed to CMake in script mode.",
|
||||
"When run in -P script mode, CMake sets this variable to "
|
||||
"the first command line argument. It then also sets CMAKE_ARGV1, "
|
||||
"CMAKE_ARGV2, ... and so on, up to the number of command line arguments "
|
||||
|
@ -133,7 +133,7 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
|
|||
"and for Visual Studio 7 it set to devenv. For "
|
||||
"NMake Makefiles the value is nmake. This can be "
|
||||
"useful for adding special flags and commands based"
|
||||
" on the final build environment. ", false,
|
||||
" on the final build environment.", false,
|
||||
"Variables that Provide Information");
|
||||
cm->DefineProperty
|
||||
("CMAKE_CROSSCOMPILING", cmProperty::VARIABLE,
|
||||
|
@ -419,7 +419,7 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
|
|||
("PROJECT_NAME", cmProperty::VARIABLE,
|
||||
"Name of the project given to the project command.",
|
||||
"This is the name given to the most "
|
||||
"recent PROJECT command. ",false,
|
||||
"recent PROJECT command.",false,
|
||||
"Variables that Provide Information");
|
||||
cm->DefineProperty
|
||||
("PROJECT_SOURCE_DIR", cmProperty::VARIABLE,
|
||||
|
@ -563,7 +563,7 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
|
|||
"If an install() command is used without the COMPONENT argument, "
|
||||
"these files will be grouped into a default component. The name of this "
|
||||
"default install component will be taken from this variable. "
|
||||
"It defaults to \"Unspecified\". ",
|
||||
"It defaults to \"Unspecified\".",
|
||||
false,
|
||||
"Variables That Change Behavior");
|
||||
|
||||
|
@ -1773,7 +1773,7 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
|
|||
("CMAKE_<LANG>_IGNORE_EXTENSIONS", cmProperty::VARIABLE,
|
||||
"File extensions that should be ignored by the build.",
|
||||
"This is a list of file extensions that may be "
|
||||
"part of a project for a given language but are not compiled. ",false,
|
||||
"part of a project for a given language but are not compiled.",false,
|
||||
"Variables for Languages");
|
||||
|
||||
cm->DefineProperty
|
||||
|
|
Loading…
Reference in New Issue