2001-07-16 23:19:05 +04:00
|
|
|
#
|
2002-06-14 19:46:37 +04:00
|
|
|
# Try to find GLU, once done this will define:
|
2001-07-16 23:19:05 +04:00
|
|
|
#
|
|
|
|
# GLU_INCLUDE_PATH = where the GLU include directory can be found
|
|
|
|
# GLU_LIBRARY = the name of the GLU library to link with
|
|
|
|
#
|
|
|
|
|
|
|
|
IF (WIN32)
|
2002-06-13 19:48:28 +04:00
|
|
|
IF(BORLAND)
|
|
|
|
SET (GLU_LIBRARY import32 CACHE STRING "GLU library for win32")
|
|
|
|
ELSE(BORLAND)
|
|
|
|
SET (GLU_LIBRARY glu32 CACHE STRING "GLU library for win32")
|
|
|
|
ENDIF(BORLAND)
|
2001-07-16 23:19:05 +04:00
|
|
|
ELSE (WIN32)
|
2002-06-14 19:46:37 +04:00
|
|
|
FIND_PATH(GLU_INCLUDE_PATH GL/glu.h
|
|
|
|
${OPENGL_INCLUDE_PATH}
|
|
|
|
/usr/include
|
|
|
|
/usr/local/include
|
|
|
|
/usr/openwin/share/include
|
|
|
|
/opt/graphics/OpenGL/include
|
|
|
|
/usr/X11R6/include
|
2001-07-16 23:19:05 +04:00
|
|
|
)
|
2002-06-13 19:48:28 +04:00
|
|
|
MARK_AS_ADVANCED(
|
|
|
|
GLU_INCLUDE_PATH
|
|
|
|
)
|
2001-07-16 23:19:05 +04:00
|
|
|
|
|
|
|
FIND_LIBRARY(GLU_LIBRARY GLU
|
2002-06-14 19:46:37 +04:00
|
|
|
${OPENGL_LIBRARY_PATH}
|
|
|
|
/usr/lib
|
|
|
|
/usr/local/lib
|
|
|
|
/opt/graphics/OpenGL/lib
|
|
|
|
/usr/openwin/lib
|
|
|
|
/usr/X11R6/lib
|
2001-07-16 23:19:05 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
ENDIF (WIN32)
|
2002-06-13 19:48:28 +04:00
|
|
|
|
|
|
|
MARK_AS_ADVANCED(
|
|
|
|
GLU_LIBRARY
|
|
|
|
)
|