2005-12-14 13:51:08 -05:00
|
|
|
|
2009-09-28 11: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-06 17:48:47 -07:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 11:45:50 -04:00
|
|
|
# License text for the above reference.)
|
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
|
|
|
|