2016-09-27 22:01:08 +03:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
2005-12-14 21:51:08 +03:00
|
|
|
|
|
|
|
|
2002-09-03 14:10:06 +04:00
|
|
|
# Use of this file is deprecated, and is here for backwards compatibility with CMake 1.4
|
|
|
|
# GLU library is now found by FindOpenGL.cmake
|
2001-07-16 23:19:05 +04:00
|
|
|
#
|
2010-04-17 14:25:40 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
message(STATUS
|
2010-04-17 14:25:40 +04:00
|
|
|
"WARNING: you are using the obsolete 'GLU' package, please use 'OpenGL' instead")
|
2001-07-16 23:19:05 +04:00
|
|
|
|
2012-11-04 00:35:44 +04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindOpenGL.cmake)
|
2001-07-16 23:19:05 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if (OPENGL_GLU_FOUND)
|
|
|
|
set (GLU_LIBRARY ${OPENGL_LIBRARIES})
|
|
|
|
set (GLU_INCLUDE_PATH ${OPENGL_INCLUDE_DIR})
|
2012-08-13 21:50:14 +04:00
|
|
|
endif ()
|
2001-07-16 23:19:05 +04:00
|
|
|
|