Compare commits

...

2 Commits

Author SHA1 Message Date
James Shiffer
8faaa65b85 restore binaries that shouldn't be excluded 2021-04-08 19:11:22 -07:00
James Shiffer
cae7389256
made shitty makefile for building on linux 2021-04-08 16:41:18 -07:00
6 changed files with 15 additions and 7 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
geometry
dist/
## Ignore Visual Studio temporary files, build results, and

View File

@ -5,13 +5,11 @@
#endif
#include <math.h>
#include <gl/GL.h>
#include <gl/GLU.h>
#include <gl/GLUT.h>
#include <GL/glut.h>
#define PI 3.14159
#define NUM_MODES 5
#define OMEGA 4.0f
#define PI 3.14159
#define NUM_MODES 5
#define OMEGA 4.0f
class GeometryPlayer

View File

@ -1,4 +1,4 @@
#include <gl/GLUT.h>
#include <GL/glut.h>
#include "geometry.h"
#define WIN_WIDTH 640

8
Makefile Normal file
View File

@ -0,0 +1,8 @@
CFLAGS=-DGL_SILENCE_DEPRECATION $(shell pkg-config --cflags gl) $(shell pkg-config --cflags glut)
LIBS=$(shell pkg-config --libs gl) $(shell pkg-config --libs glut)
all:
g++ -o geometry ./FemboyGeometry/*.cpp $(CFLAGS) $(LIBS)
clean:
rm -f geometry

1
thirdparty/freeglut/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
!bin

BIN
thirdparty/freeglut/bin/freeglut.dll vendored Normal file

Binary file not shown.