Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cageo141/guiglut.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#ifdef __APPLE__
#include <GLUT/glut.h>
#include <OpenGL/glu.h>
#else
#include <GL/glut.h>
#include <GL/glu.h>
#endif

#include <limits>
#include <algorithm>
#include <cmath>
Expand Down
4 changes: 4 additions & 0 deletions cageo141/makefile.guiglut
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CXX = g++
CXXFLAGS = -O3
ifeq ($(shell uname),Darwin)
LDFLAGS = -lm -framework GLUT -framework OpenGL
else
LDFLAGS = -lm -lglut -lGLU
endif
TARGET = guiglut
OBJS = $(TARGET).o greiner.o polygon.o utilities.o connector.o gpc.o martinez.o

Expand Down