diff options
author | Mateusz Loskot <mateusz@loskot.net> | 2018-04-17 19:46:50 (GMT) |
---|---|---|
committer | Mateusz Loskot <mateusz@loskot.net> | 2018-04-17 20:48:36 (GMT) |
commit | 8d07408a62c03123c0c49b9946025930d1d61e16 (patch) | |
tree | 8e3b3a636b9e594fdc1cacbd11fd71efcb507519 /Modules | |
parent | e70da3f0f3fe2f4373152953ba9822ce0f368cf5 (diff) | |
download | CMake-8d07408a62c03123c0c49b9946025930d1d61e16.zip CMake-8d07408a62c03123c0c49b9946025930d1d61e16.tar.gz CMake-8d07408a62c03123c0c49b9946025930d1d61e16.tar.bz2 |
FindJPEG: Cleanup documentation formatting
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindJPEG.cmake | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/Modules/FindJPEG.cmake b/Modules/FindJPEG.cmake index a9e6396..04e4d20 100644 --- a/Modules/FindJPEG.cmake +++ b/Modules/FindJPEG.cmake @@ -5,21 +5,27 @@ # FindJPEG # -------- # -# Find JPEG +# Find the JPEG library (libjpeg) # -# Find the native JPEG includes and library This module defines +# Result variables +# ^^^^^^^^^^^^^^^^ # -# :: +# This module will set the following variables in your project: # -# JPEG_INCLUDE_DIR, where to find jpeglib.h, etc. -# JPEG_LIBRARIES, the libraries needed to use JPEG. -# JPEG_FOUND, If false, do not try to use JPEG. +# ``JPEG_FOUND`` +# If false, do not try to use JPEG. +# ``JPEG_INCLUDE_DIR`` +# where to find jpeglib.h, etc. +# ``JPEG_LIBRARIES`` +# the libraries needed to use JPEG. # -# also defined, but not for general use are +# Cache variables +# ^^^^^^^^^^^^^^^ # -# :: +# The following cache variables may also be set: # -# JPEG_LIBRARY, where to find the JPEG library. +# ``JPEG_LIBRARY`` +# where to find the JPEG library. find_path(JPEG_INCLUDE_DIR jpeglib.h) |