2005-12-14 13:51:08 -05:00
|
|
|
# - try to find glut library and include files
|
|
|
|
# GLUT_INCLUDE_DIR, where to find GL/glut.h, etc.
|
2005-12-15 10:41:19 -05:00
|
|
|
# GLUT_LIBRARIES, the libraries to link against
|
2005-12-14 13:51:08 -05:00
|
|
|
# GLUT_FOUND, If false, do not try to use GLUT.
|
|
|
|
# Also defined, but not for general use are:
|
|
|
|
# GLUT_glut_LIBRARY = the full path to the glut library.
|
|
|
|
# GLUT_Xmu_LIBRARY = the full path to the Xmu library.
|
|
|
|
# GLUT_Xi_LIBRARY = the full path to the Xi Library.
|
2001-07-16 15:19:05 -04: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.)
|
|
|
|
|
2001-07-16 15:19:05 -04:00
|
|
|
IF (WIN32)
|
2008-03-13 10:56:40 -04:00
|
|
|
FIND_PATH( GLUT_INCLUDE_DIR NAMES GL/glut.h
|
|
|
|
PATHS ${GLUT_ROOT_PATH}/include )
|
2011-01-17 14:19:18 -05:00
|
|
|
FIND_LIBRARY( GLUT_glut_LIBRARY NAMES glut glut32 freeglut
|
2008-09-26 20:09:26 -04:00
|
|
|
PATHS
|
2008-03-13 10:56:40 -04:00
|
|
|
${OPENGL_LIBRARY_DIR}
|
|
|
|
${GLUT_ROOT_PATH}/Release
|
2002-06-14 10:35:42 -04:00
|
|
|
)
|
2001-07-16 15:19:05 -04:00
|
|
|
ELSE (WIN32)
|
2008-03-13 10:56:40 -04:00
|
|
|
|
2002-06-17 13:07:32 -04:00
|
|
|
IF (APPLE)
|
2008-03-13 10:56:40 -04:00
|
|
|
# These values for Apple could probably do with improvement.
|
2005-07-15 12:57:53 -04:00
|
|
|
FIND_PATH( GLUT_INCLUDE_DIR glut.h
|
|
|
|
/System/Library/Frameworks/GLUT.framework/Versions/A/Headers
|
2002-09-05 12:00:45 -04:00
|
|
|
${OPENGL_LIBRARY_DIR}
|
2008-03-13 10:56:40 -04:00
|
|
|
)
|
2006-10-03 16:18:32 -04:00
|
|
|
SET(GLUT_glut_LIBRARY "-framework GLUT" CACHE STRING "GLUT library for OSX")
|
2004-04-22 17:20:41 -04:00
|
|
|
SET(GLUT_cocoa_LIBRARY "-framework Cocoa" CACHE STRING "Cocoa framework for OSX")
|
2002-06-17 13:07:32 -04:00
|
|
|
ELSE (APPLE)
|
2008-03-13 10:56:40 -04:00
|
|
|
|
2002-09-03 06:10:06 -04:00
|
|
|
FIND_PATH( GLUT_INCLUDE_DIR GL/glut.h
|
2002-06-17 13:07:32 -04:00
|
|
|
/usr/include/GL
|
2002-09-03 06:10:06 -04:00
|
|
|
/usr/openwin/share/include
|
|
|
|
/usr/openwin/include
|
|
|
|
/opt/graphics/OpenGL/include
|
2002-06-18 14:26:57 -04:00
|
|
|
/opt/graphics/OpenGL/contrib/libglut
|
2008-03-13 10:56:40 -04:00
|
|
|
)
|
|
|
|
|
2002-09-03 06:10:06 -04:00
|
|
|
FIND_LIBRARY( GLUT_glut_LIBRARY glut
|
|
|
|
/usr/openwin/lib
|
2008-03-13 10:56:40 -04:00
|
|
|
)
|
|
|
|
|
2002-09-03 06:10:06 -04:00
|
|
|
FIND_LIBRARY( GLUT_Xi_LIBRARY Xi
|
|
|
|
/usr/openwin/lib
|
2008-03-13 10:56:40 -04:00
|
|
|
)
|
|
|
|
|
2002-09-03 06:10:06 -04:00
|
|
|
FIND_LIBRARY( GLUT_Xmu_LIBRARY Xmu
|
|
|
|
/usr/openwin/lib
|
2008-03-13 10:56:40 -04:00
|
|
|
)
|
|
|
|
|
2002-09-03 06:10:06 -04:00
|
|
|
ENDIF (APPLE)
|
2008-03-13 10:56:40 -04:00
|
|
|
|
2001-07-16 15:19:05 -04:00
|
|
|
ENDIF (WIN32)
|
2002-06-13 11:48:28 -04:00
|
|
|
|
2002-09-03 06:10:06 -04:00
|
|
|
SET( GLUT_FOUND "NO" )
|
|
|
|
IF(GLUT_INCLUDE_DIR)
|
|
|
|
IF(GLUT_glut_LIBRARY)
|
|
|
|
# Is -lXi and -lXmu required on all platforms that have it?
|
|
|
|
# If not, we need some way to figure out what platform we are on.
|
|
|
|
SET( GLUT_LIBRARIES
|
|
|
|
${GLUT_glut_LIBRARY}
|
|
|
|
${GLUT_Xmu_LIBRARY}
|
|
|
|
${GLUT_Xi_LIBRARY}
|
2004-04-22 17:20:41 -04:00
|
|
|
${GLUT_cocoa_LIBRARY}
|
2008-03-13 10:56:40 -04:00
|
|
|
)
|
2002-09-03 06:10:06 -04:00
|
|
|
SET( GLUT_FOUND "YES" )
|
2008-03-13 10:56:40 -04:00
|
|
|
|
|
|
|
#The following deprecated settings are for backwards compatibility with CMake1.4
|
2002-09-03 06:10:06 -04:00
|
|
|
SET (GLUT_LIBRARY ${GLUT_LIBRARIES})
|
|
|
|
SET (GLUT_INCLUDE_PATH ${GLUT_INCLUDE_DIR})
|
2008-03-13 10:56:40 -04:00
|
|
|
|
2002-09-03 06:10:06 -04:00
|
|
|
ENDIF(GLUT_glut_LIBRARY)
|
|
|
|
ENDIF(GLUT_INCLUDE_DIR)
|
|
|
|
|
2002-06-13 11:48:28 -04:00
|
|
|
MARK_AS_ADVANCED(
|
2002-09-05 12:00:45 -04:00
|
|
|
GLUT_INCLUDE_DIR
|
|
|
|
GLUT_glut_LIBRARY
|
|
|
|
GLUT_Xmu_LIBRARY
|
|
|
|
GLUT_Xi_LIBRARY
|
2008-03-13 10:56:40 -04:00
|
|
|
)
|