From 5aaf0cd2dc75671d2c023d3e40073417cb80645c Mon Sep 17 00:00:00 2001 From: ocornut Date: Fri, 27 Feb 2015 11:00:31 +0000 Subject: [PATCH] Examples: Fix OpenGL3 example Makefile --- examples/opengl3_example/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/opengl3_example/Makefile b/examples/opengl3_example/Makefile index f95e9d1b..973807dc 100644 --- a/examples/opengl3_example/Makefile +++ b/examples/opengl3_example/Makefile @@ -20,7 +20,7 @@ UNAME_S := $(shell uname -s) ifeq ($(UNAME_S), Linux) #LINUX ECHO_MESSAGE = "Linux" - CXXFLAGS = -I../../ `pkg-config --cflags glfw3` + CXXFLAGS = -I../../ -I../opengl_example/gl3w `pkg-config --cflags glfw3` CXXFLAGS += -Wall LIBS = `pkg-config --static --libs glfw3` endif