fix detection of libglew library on GNU/Linux

This commit is contained in:
darealshinji 2014-06-19 10:43:37 +02:00
parent 5a0f1a882a
commit 7757755e40
1 changed files with 5 additions and 1 deletions

View File

@ -253,7 +253,11 @@ endif( GLEW_INCLUDE_DIR )
# GLEW include directory
include_directories( "${GLEW_INCLUDE_DIR}" )
if( NOT WIN32 OR APPLE )
find_library( GLEW_LIBRARY libGLEW.so )
else( NOT WIN32 OR APPLE )
find_library( GLEW_LIBRARY glew32 )
endif( NOT WIN32 OR APPLE )
if( NOT GLEW_LIBRARY )
message( SEND_ERROR "Could not find GLEW library files" )