diff options
author | Brad King <brad.king@kitware.com> | 2014-10-23 12:32:29 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-10-23 12:32:29 (GMT) |
commit | 2a668e20da7ba6ae380eb44219f285f13fd34981 (patch) | |
tree | a93d5294d2466ef9cf3facdecdd04bb689f2d925 /Modules/FindBacktrace.cmake | |
parent | 0213e6944ef471d7341eb1ac969656c68852f153 (diff) | |
parent | 80b19a7127e48dfc0e8cd0162359ae149e537638 (diff) | |
download | CMake-2a668e20da7ba6ae380eb44219f285f13fd34981.zip CMake-2a668e20da7ba6ae380eb44219f285f13fd34981.tar.gz CMake-2a668e20da7ba6ae380eb44219f285f13fd34981.tar.bz2 |
Merge topic 'doc-line-lengths'
80b19a71 Help/manual: Avoid long lines in code blocks
4fdacedc Help: Clarify formatting of CPACK_WIX_ACL documentation
35ca4863 Help: Wrap long ctest_submit signature line
58b2d760 Modules: Format documentation to avoid over-long preformatted lines
Diffstat (limited to 'Modules/FindBacktrace.cmake')
-rw-r--r-- | Modules/FindBacktrace.cmake | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/Modules/FindBacktrace.cmake b/Modules/FindBacktrace.cmake index 07109b0..cb4f60a 100644 --- a/Modules/FindBacktrace.cmake +++ b/Modules/FindBacktrace.cmake @@ -5,18 +5,24 @@ # Find provider for backtrace(3). # # Checks if OS supports backtrace(3) via either libc or custom library. -# This module defines the following variables:: +# This module defines the following variables: # -# Backtrace_HEADER - The header file needed for backtrace(3). Cached. -# Could be forcibly set by user. -# Backtrace_INCLUDE_DIRS - The include directories needed to use backtrace(3) header. -# Backtrace_LIBRARIES - The libraries (linker flags) needed to use backtrace(3), if any. -# Backtrace_FOUND - Is set if and only if backtrace(3) support detected. +# ``Backtrace_HEADER`` +# The header file needed for backtrace(3). Cached. +# Could be forcibly set by user. +# ``Backtrace_INCLUDE_DIRS`` +# The include directories needed to use backtrace(3) header. +# ``Backtrace_LIBRARIES`` +# The libraries (linker flags) needed to use backtrace(3), if any. +# ``Backtrace_FOUND`` +# Is set if and only if backtrace(3) support detected. # -# The following cache variables are also available to set or use:: +# The following cache variables are also available to set or use: # -# Backtrace_LIBRARY - The external library providing backtrace, if any. -# Backtrace_INCLUDE_DIR - The directory holding the backtrace(3) header. +# ``Backtrace_LIBRARY`` +# The external library providing backtrace, if any. +# ``Backtrace_INCLUDE_DIR`` +# The directory holding the backtrace(3) header. # # Typical usage is to generate of header file using configure_file() with the # contents like the following:: |