2016-10-30 18:24:19 +01:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
2008-10-12 18:41:06 +02: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
|
|
|
|
#
|
2010-06-23 01:18:35 +03:00
|
|
|
|
2013-03-16 19:13:01 +02:00
|
|
|
message(STATUS
|
2010-06-23 01:18:35 +03:00
|
|
|
"WARNING: you are using the obsolete 'GLU' package, please use 'OpenGL' instead")
|
2008-10-12 18:41:06 +02:00
|
|
|
|
2013-03-16 19:13:01 +02:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindOpenGL.cmake)
|
2008-10-12 18:41:06 +02:00
|
|
|
|
2013-03-16 19:13:01 +02:00
|
|
|
if (OPENGL_GLU_FOUND)
|
|
|
|
set (GLU_LIBRARY ${OPENGL_LIBRARIES})
|
|
|
|
set (GLU_INCLUDE_PATH ${OPENGL_INCLUDE_DIR})
|
|
|
|
endif ()
|