mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 03:39:43 -06:00
9 lines
108 B
C++
9 lines
108 B
C++
#include <GL/glew.h>
|
|
|
|
int main()
|
|
{
|
|
GLenum init_return = glewInit();
|
|
|
|
return (init_return == GLEW_OK);
|
|
}
|