FindGLU.cmake 554 B

1234567891011121314151617
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. # Use of this file is deprecated, and is here for backwards compatibility with CMake 1.4
  4. # GLU library is now found by FindOpenGL.cmake
  5. #
  6. message(STATUS
  7. "WARNING: you are using the obsolete 'GLU' package, please use 'OpenGL' instead")
  8. include(${CMAKE_CURRENT_LIST_DIR}/FindOpenGL.cmake)
  9. if (OPENGL_GLU_FOUND)
  10. set (GLU_LIBRARY ${OPENGL_LIBRARIES})
  11. set (GLU_INCLUDE_PATH ${OPENGL_INCLUDE_DIR})
  12. endif ()