mirror of
https://github.com/reactos/CMake.git
synced 2024-12-15 07:41:15 +00:00
0b288b6121
Transferred OPENGL finding logic in from VXL Added Some backwards compatibility with CMake1.4
14 lines
327 B
CMake
14 lines
327 B
CMake
#
|
|
# Use of this file is deprecated, and is here for backwards compatibility with CMake 1.4
|
|
# GLU library is now found by FindOpenGL.cmake
|
|
#
|
|
#
|
|
|
|
INCLUDE(${CMAKE_ROOT}/Modules/FindOpenGL.cmake)
|
|
|
|
IF (OPENGL_GLU_FOUND)
|
|
SET (GLU_LIBRARY ${OPENGL_LIBRARIES})
|
|
SET (GLU_INCLUDE_PATH ${OPENGL_INCLUDE_DIR})
|
|
ENDIF (OPENGL_GLU_FOUND)
|
|
|