You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cmake exported info does not include the software version. This was a bit confusing since cmake itself ships with FindGLEW.cmake, which also doesn't identify the GLEW version. What currently happens during a build is that this library's export is consulted, no version is found, so the build falls-back to FindGLEW and ignores any version information specified in find_package. This makes the build look like it succeeded, but you can't actually be certain of the GLEW version it will actually attach to your project.
I believe the update would need to go somewhere in this block:
The addition of CMakePackageConfigHelpers.cmake to the default cmake toolset should make this straightforward to update. A relevant example can be found here: https://youtu.be/bsXLMQ6WgIk?t=2381
The text was updated successfully, but these errors were encountered:
The cmake exported info does not include the software version. This was a bit confusing since cmake itself ships with FindGLEW.cmake, which also doesn't identify the GLEW version. What currently happens during a build is that this library's export is consulted, no version is found, so the build falls-back to FindGLEW and ignores any version information specified in
find_package
. This makes the build look like it succeeded, but you can't actually be certain of the GLEW version it will actually attach to your project.I believe the update would need to go somewhere in this block:
glew/build/cmake/CMakeLists.txt
Line 208 in 67e980b
The addition of CMakePackageConfigHelpers.cmake to the default cmake toolset should make this straightforward to update. A relevant example can be found here:
https://youtu.be/bsXLMQ6WgIk?t=2381
The text was updated successfully, but these errors were encountered: