Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support of building GUI app for Apple macOS. #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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