pantry/projects/glfw.org/test.c
Andrew 7725ed7fb7
+glfw.org (#4925)
* new file:   projects/glfw.org/package.yml
	new file:   projects/glfw.org/test.c

* wip

* -fPIC -pie

* test section: -fPIC -pie

* .

* comment

---------

Co-authored-by: Jacob Heider <jacob@pkgx.dev>
2024-01-21 06:59:19 -05:00

10 lines
167 B
C

#define GLFW_INCLUDE_GLU
#include <GLFW/glfw3.h>
#include <stdlib.h>
int main()
{
if (!glfwInit())
exit(EXIT_FAILURE);
glfwTerminate();
return 0;
}