diff options
-rw-r--r-- | tests/FindGLEW.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/FindGLEW.cmake b/tests/FindGLEW.cmake index a503368..1d94ca2 100644 --- a/tests/FindGLEW.cmake +++ b/tests/FindGLEW.cmake @@ -14,7 +14,7 @@ include(FindPkgConfig) if (PKG_CONFIG_FOUND) message("Doing pkg config glew check...") - pkg_check_modules(GLEW glew>=1.5) + pkg_check_modules(GLEW glew>=1.6) endif() if (GLEW_LIBRARIES) @@ -62,4 +62,4 @@ else() else() set(GLEW_FOUND 0 CACHE STRING "Set to 1 if GLEW is found, 0 otherwise") endif() -endif()
\ No newline at end of file +endif() |