diff options
author | Brad King <brad.king@kitware.com> | 2014-10-22 20:43:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-10-22 20:48:04 (GMT) |
commit | 80b19a7127e48dfc0e8cd0162359ae149e537638 (patch) | |
tree | b164da556a4cbb9d0315f01c6b9fe92de955acc5 /Help/manual/cmake-developer.7.rst | |
parent | 4fdacedc27aa26501530fc85f887ab58b2800472 (diff) | |
download | CMake-80b19a7127e48dfc0e8cd0162359ae149e537638.zip CMake-80b19a7127e48dfc0e8cd0162359ae149e537638.tar.gz CMake-80b19a7127e48dfc0e8cd0162359ae149e537638.tar.bz2 |
Help/manual: Avoid long lines in code blocks
Update the wording of some examples to avoid long lines in code blocks.
Otherwise the formatted documentation can exceed certain column width
limitations.
Diffstat (limited to 'Help/manual/cmake-developer.7.rst')
-rw-r--r-- | Help/manual/cmake-developer.7.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Help/manual/cmake-developer.7.rst b/Help/manual/cmake-developer.7.rst index 625dac0..eea5fc3 100644 --- a/Help/manual/cmake-developer.7.rst +++ b/Help/manual/cmake-developer.7.rst @@ -1005,7 +1005,8 @@ projects that do not require a high enough CMake version. .. code-block:: cmake if(CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 3.0.0) - message(AUTHOR_WARNING "Your project should require at least CMake 3.0.0 to use FindFoo.cmake") + message(AUTHOR_WARNING + "Your project should require at least CMake 3.0.0 to use FindFoo.cmake") endif() Now the actual libraries and so on have to be found. The code here will |