Browse Source

FindMagnum: fixed formatting with `cmake --help-module`.

pull/278/head
Vladimír Vondruš 13 years ago
parent
commit
005ae96cf3
  1. 45
      modules/FindMagnum.cmake

45
modules/FindMagnum.cmake

@ -15,24 +15,25 @@
# components. The base library depends on Corrade, OpenGL and GLEW # components. The base library depends on Corrade, OpenGL and GLEW
# libraries. Additional dependencies are specified by the components. The # libraries. Additional dependencies are specified by the components. The
# optional components are: # optional components are:
# DebugTools - DebugTools library (depends on MeshTools, Physics, # DebugTools - DebugTools library (depends on MeshTools, Physics,
# Primitives, SceneGraph and Shaders components) # Primitives, SceneGraph and Shaders components)
# MeshTools - MeshTools library # MeshTools - MeshTools library
# Physics - Physics library # Physics - Physics library
# Primitives - Library with stock geometric primitives (static) # Primitives - Library with stock geometric primitives (static)
# SceneGraph - Scene graph library # SceneGraph - Scene graph library
# Shaders - Library with stock shaders # Shaders - Library with stock shaders
# Text - Text rendering library (depends on TextureTools component, # Text - Text rendering library (depends on TextureTools
# FreeType library and possibly HarfBuzz library, see below) # component, FreeType library and possibly HarfBuzz
# TextureTools - TextureTools library # library, see below)
# GlxApplication - GLX application (depends on X11 libraries) # TextureTools - TextureTools library
# XEglApplication - X/EGL application (depends on EGL and X11 libraries) # GlxApplication - GLX application (depends on X11 libraries)
# XEglApplication - X/EGL application (depends on EGL and X11 libraries)
# WindowlessGlxApplication - Windowless GLX application (depends on X11 # WindowlessGlxApplication - Windowless GLX application (depends on X11
# libraries) # libraries)
# GlutApplication - GLUT application (depends on GLUT library) # GlutApplication - GLUT application (depends on GLUT library)
# Sdl2Application - SDL2 application (depends on SDL2 library) # Sdl2Application - SDL2 application (depends on SDL2 library)
# NaClApplication - NaCl application (only if targetting Google Chrome # NaClApplication - NaCl application (only if targetting Google Chrome
# Native Client) # Native Client)
# Example usage with specifying additional components is: # Example usage with specifying additional components is:
# find_package(Magnum [REQUIRED|COMPONENTS] # find_package(Magnum [REQUIRED|COMPONENTS]
# MeshTools Primitives GlutApplication) # MeshTools Primitives GlutApplication)
@ -44,10 +45,12 @@
# Features of found Magnum library are exposed in these variables: # Features of found Magnum library are exposed in these variables:
# MAGNUM_TARGET_GLES - Defined if compiled for OpenGL ES # MAGNUM_TARGET_GLES - Defined if compiled for OpenGL ES
# MAGNUM_TARGET_GLES2 - Defined if compiled for OpenGL ES 2.0 # MAGNUM_TARGET_GLES2 - Defined if compiled for OpenGL ES 2.0
# MAGNUM_TARGET_DESKTOP_GLES - Defined if compiled with OpenGL ES emulation # MAGNUM_TARGET_DESKTOP_GLES - Defined if compiled with OpenGL ES
# on desktop OpenGL # emulation on desktop OpenGL
# MAGNUM_TARGET_NACL - Defined if compiled for Google Chrome Native Client # MAGNUM_TARGET_NACL - Defined if compiled for Google Chrome Native
# MAGNUM_USE_HARFBUZZ - Defined if HarfBuzz library is used for text rendering # Client
# MAGNUM_USE_HARFBUZZ - Defined if HarfBuzz library is used for text
# rendering
# #
# Additionally these variables are defined for internal usage: # Additionally these variables are defined for internal usage:
# MAGNUM_INCLUDE_DIR - Root include dir (w/o # MAGNUM_INCLUDE_DIR - Root include dir (w/o

Loading…
Cancel
Save