Update Makefile

Removed glew from linker flags because on windows this fails to compile with the installed raylib package.
This commit is contained in:
Eugene F 2017-04-20 22:32:21 -04:00 committed by GitHub
parent 0ed82150f0
commit 2000b3635b

View File

@ -141,7 +141,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
else else
# libraries for Windows desktop compiling # libraries for Windows desktop compiling
# NOTE: GLFW3 and OpenAL Soft libraries should be installed # 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 endif
endif endif