From 123771f6b50550d35ba3f6d7c87e240686c23703 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Sat, 17 Jun 2017 22:43:07 +0800 Subject: Fixed example application. Fixed compile errors in Windows. --- examples/makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'examples/makefile') diff --git a/examples/makefile b/examples/makefile index b4844d9..6654d03 100644 --- a/examples/makefile +++ b/examples/makefile @@ -1,9 +1,13 @@ CC= g++ CXXFLAGS= -I/usr/include/freetype2 -I../include -D_LINUX LINK= -lSDL2 -lvorbis -lvorbisfile -lopenal -ljpeg -lpng -lfreetype -lz -lsmeltext -lsmelt -lCxImage +LINK_GLFW= -lglfw -lGLEW -lGL -lvorbis -lvorbisfile -lopenal -ljpeg -lpng -lfreetype -lz -lsmeltext -lsmelt -lCxImage LINK_FOLDER= -L../smelt/sdl -L../extensions +LINK_GLFW_FOLDER= -L../smelt/glfw -L../extensions all: $(CC) smelt_test.cpp $(CXXFLAGS) $(LINK_FOLDER) $(LINK) -o smelt_test clean: - rm smelt_test \ No newline at end of file + rm smelt_test +glfw: + $(CC) smelt_test.cpp $(CXXFLAGS) $(LINK_GLFW_FOLDER) $(LINK_GLFW) -o smelt_test_glfw -- cgit v1.2.3