From 2000b3635be49be3d2c5f273c138f9e2c9775f31 Mon Sep 17 00:00:00 2001 From: Eugene F Date: Thu, 20 Apr 2017 22:32:21 -0400 Subject: [PATCH] Update Makefile Removed glew from linker flags because on windows this fails to compile with the installed raylib package. --- templates/basic_game/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/basic_game/Makefile b/templates/basic_game/Makefile index b9704b4b2..6114b1ce1 100644 --- a/templates/basic_game/Makefile +++ b/templates/basic_game/Makefile @@ -141,7 +141,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) else # libraries for Windows desktop compiling # NOTE: GLFW3 and OpenAL Soft libraries should be installed - LIBS = -lraylib -lglfw3 -lglew32 -lopengl32 -lopenal32 -lgdi32 + LIBS = -lraylib -lglfw3 -lopengl32 -lopenal32 -lgdi32 endif endif endif