diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c20a86ba7..e4ac655ca 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -253,7 +253,11 @@ endif( GLEW_INCLUDE_DIR ) # GLEW include directory include_directories( "${GLEW_INCLUDE_DIR}" ) -find_library( GLEW_LIBRARY glew32 ) +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" )