medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit b014733fe63019962e35fa7dafb0ff983ce38165
parent 8e1384342adb322debf771a0010bfbc485a324bc
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Tue Sep 13 19:25:57 +0100

Don't link with libGL

Diffstat:
os.mk | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/os.mk b/os.mk @@ -1,7 +1,7 @@ # Makefile OS detection ifneq ($(shell uname -s),Darwin) CXXFLAGS += -fPIC - LDFLAGS += -lGL -lglfw -ldl + LDFLAGS += -lglfw -ldl else LDFLAGS += -framework OpenGL -lglfw3 endif