https://github.com/Kitware/CMake
Raw File
Tip revision: 9a64e11474dfcf58c388e270731f19f3414c46fa authored by Bill Hoffman on 18 April 2006, 20:40:40 UTC
ENH: make cpack names match old cmake release process
Tip revision: 9a64e11
FindGLU.cmake


# Use of this file is deprecated, and is here for backwards compatibility with CMake 1.4
# GLU library is now found by FindOpenGL.cmake
#
#

INCLUDE(FindOpenGL)

IF (OPENGL_GLU_FOUND)
  SET (GLU_LIBRARY ${OPENGL_LIBRARIES})
  SET (GLU_INCLUDE_PATH ${OPENGL_INCLUDE_DIR})
ENDIF (OPENGL_GLU_FOUND)

back to top