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