mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-11 20:11:10 -05: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);
|
|
}
|