diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2002-06-13 11:48:28 -0400 |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2002-06-13 11:48:28 -0400 |
commit | 5380afe02b0fa1f7d212e8639981e0df524315ac (patch) | |
tree | aae96091a25c77a537d407dcaafbb8943227b646 /Modules/FindGLU.cmake | |
parent | e57d209bdcb092d86bc9e0d2c2d6a0adf229bfc5 (diff) | |
download | cmake-5380afe02b0fa1f7d212e8639981e0df524315ac.tar.gz |
ENH: make all OpenGL libs advanced, and add support for glu lib with Borland
Diffstat (limited to 'Modules/FindGLU.cmake')
-rw-r--r-- | Modules/FindGLU.cmake | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Modules/FindGLU.cmake b/Modules/FindGLU.cmake index 75ac7e0740..8b795ad909 100644 --- a/Modules/FindGLU.cmake +++ b/Modules/FindGLU.cmake @@ -7,7 +7,11 @@ # IF (WIN32) - SET (GLU_LIBRARY glu32 CACHE STRING "GLU library for win32") + 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) ELSE (WIN32) FIND_PATH(GLU_INCLUDE_PATH GL/gl.h /usr/include @@ -16,6 +20,9 @@ ELSE (WIN32) /opt/graphics/OpenGL/include /usr/X11R6/include ) + MARK_AS_ADVANCED( + GLU_INCLUDE_PATH + ) FIND_LIBRARY(GLU_LIBRARY GLU /usr/lib @@ -26,3 +33,7 @@ ELSE (WIN32) ) ENDIF (WIN32) + +MARK_AS_ADVANCED( + GLU_LIBRARY +) |