diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-23 10:08:26 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-23 10:08:26 -0400 |
commit | 712758dfc3a3f6f82f90d5808eec2eed433beb42 (patch) | |
tree | 96b184f1aa58060e4b201e528f4a481386958d67 /Source | |
parent | 8b76142f0003aa292bce7257496d7263d039033a (diff) | |
download | cmake-712758dfc3a3f6f82f90d5808eec2eed433beb42.tar.gz |
STYLE: fix some long lines
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmDocumentVariables.cxx | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/Source/cmDocumentVariables.cxx b/Source/cmDocumentVariables.cxx index 9ef97cbe15..7e94d021f0 100644 --- a/Source/cmDocumentVariables.cxx +++ b/Source/cmDocumentVariables.cxx @@ -554,31 +554,36 @@ void cmDocumentVariables::DefineVariables(cmake* cm) ("CMAKE_<LANG>_CREATE_STATIC_LIBRARY", cmProperty::VARIABLE, "Rule variable to create a static library.", "This is a rule variable that tells CMake how " - "to create a static library for the language <LANG>.",false,"Variables for Languages"); + "to create a static library for the language <LANG>.",false, + "Variables for Languages"); cm->DefineProperty ("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,"Variables for Languages"); + "part of a project for a given language but are not compiled. ",false, + "Variables for Languages"); cm->DefineProperty ("CMAKE_<LANG>_LINKER_PREFERENCE", cmProperty::VARIABLE, "Determine if a language should be used for linking.", "If this is \"Preferred\" then if there is a mixed " "language shared library or executable, then this " - "languages linker command will be used.",false,"Variables for Languages"); + "languages linker command will be used.",false, + "Variables for Languages"); cm->DefineProperty ("CMAKE_<LANG>_LINK_EXECUTABLE ", cmProperty::VARIABLE, "Rule variable to link and executable.", - "Rule variable to link and executable for the given language.",false,"Variables for Languages"); + "Rule variable to link and executable for the given language.",false, + "Variables for Languages"); cm->DefineProperty ("CMAKE_<LANG>_OUTPUT_EXTENSION", cmProperty::VARIABLE, "Extension for the output of a compile for a single file.", "This is the extension for an object file for " - "the given <LANG>. For example .obj for C on Windows.",false,"Variables for Languages"); + "the given <LANG>. For example .obj for C on Windows.",false, + "Variables for Languages"); cm->DefineProperty ("CMAKE_<LANG>_SOURCE_FILE_EXTENSIONS", cmProperty::VARIABLE, |