2005-12-14 21:51:08 +03:00
|
|
|
|
2009-09-28 19:45:50 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2001-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2010-08-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:45:50 +04:00
|
|
|
# License text for the above reference.)
|
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
|
|
|
|