diff options
author | Brad King <brad.king@kitware.com> | 2014-06-05 18:27:59 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-06-05 18:27:59 (GMT) |
commit | 5b7fa0e75e5d300ee9a563d998f1d728feb4061c (patch) | |
tree | 699be54f6868ae418bba07259a7488e7e7da29bd | |
parent | 88818b680549651b6531a6648396d749b759afb2 (diff) | |
parent | 0496c4302e43f8b4297a905e9083db08786c4e7b (diff) | |
download | CMake-5b7fa0e75e5d300ee9a563d998f1d728feb4061c.zip CMake-5b7fa0e75e5d300ee9a563d998f1d728feb4061c.tar.gz CMake-5b7fa0e75e5d300ee9a563d998f1d728feb4061c.tar.bz2 |
Merge topic 'FindOpenGL-docs'
0496c430 FindOpenGL: Organize and format module documentation
-rw-r--r-- | Modules/FindOpenGL.cmake | 42 |
1 files changed, 24 insertions, 18 deletions
diff --git a/Modules/FindOpenGL.cmake b/Modules/FindOpenGL.cmake index 21c2198..a83a6c3 100644 --- a/Modules/FindOpenGL.cmake +++ b/Modules/FindOpenGL.cmake @@ -2,32 +2,38 @@ # FindOpenGL # ---------- # -# Try to find OpenGL +# FindModule for OpenGL and GLU. # -# Once done this will define +# Result Variables +# ^^^^^^^^^^^^^^^^ # -# :: +# This module sets the following variables: # -# OPENGL_FOUND - system has OpenGL -# OPENGL_XMESA_FOUND - system has XMESA -# OPENGL_GLU_FOUND - system has GLU -# OPENGL_INCLUDE_DIR - the GL include directory -# OPENGL_LIBRARIES - Link these to use OpenGL and GLU +# ``OPENGL_FOUND`` +# True, if the system has OpenGL. +# ``OPENGL_XMESA_FOUND`` +# True, if the system has XMESA. +# ``OPENGL_GLU_FOUND`` +# True, if the system has GLU. +# ``OPENGL_INCLUDE_DIR`` +# Path to the OpenGL include directory. +# ``OPENGL_LIBRARIES`` +# Paths to the OpenGL and GLU libraries. # +# If you want to use just GL you can use these values: # +# ``OPENGL_gl_LIBRARY`` +# Path to the OpenGL library. +# ``OPENGL_glu_LIBRARY`` +# Path to the GLU library. # -# If you want to use just GL you can use these values +# OSX Specific +# ^^^^^^^^^^^^ # -# :: -# -# OPENGL_gl_LIBRARY - Path to OpenGL Library -# OPENGL_glu_LIBRARY - Path to GLU Library -# -# -# -# On OSX default to using the framework version of opengl People will +# On OSX default to using the framework version of OpenGL. People will # have to change the cache values of OPENGL_glu_LIBRARY and -# OPENGL_gl_LIBRARY to use OpenGL with X11 on OSX +# OPENGL_gl_LIBRARY to use OpenGL with X11 on OSX. + #============================================================================= # Copyright 2001-2009 Kitware, Inc. |