mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
7725ed7fb7
* 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>
10 lines
167 B
C
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;
|
|
} |