2016-09-27 15:01:08 -04: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 13:51:08 -05:00
|
|
|
|
|
|
|
|
2002-09-03 06: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 15:19:05 -04:00
|
|
|
#
|
2010-04-17 12:25:40 +02:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
message(STATUS
|
2010-04-17 12:25:40 +02:00
|
|
|
"WARNING: you are using the obsolete 'GLU' package, please use 'OpenGL' instead")
|
2001-07-16 15:19:05 -04:00
|
|
|
|
2012-11-03 21:35:44 +01:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindOpenGL.cmake)
|
2001-07-16 15:19:05 -04:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
if (OPENGL_GLU_FOUND)
|
|
|
|
set (GLU_LIBRARY ${OPENGL_LIBRARIES})
|
|
|
|
set (GLU_INCLUDE_PATH ${OPENGL_INCLUDE_DIR})
|
2012-08-13 13:50:14 -04:00
|
|
|
endif ()
|
2001-07-16 15:19:05 -04:00
|
|
|
|