Merge pull request #361 from fr500/master

Examples: OpenGL3: Add msys2/mingw64 target.
This commit is contained in:
omar 2015-10-08 20:47:22 +02:00
commit 379079ac42
1 changed files with 10 additions and 1 deletions

View File

@ -39,6 +39,16 @@ ifeq ($(UNAME_S), Darwin) #APPLE
CFLAGS = $(CXXFLAGS)
endif
ifeq ($(UNAME_S), MINGW64_NT-6.3)
ECHO_MESSAGE = "Windows"
LIBS = -lglfw3 -lgdi32 -lopengl32 -limm32
CXXFLAGS = -I../../ -I../libs/gl3w `pkg-config --cflags glfw3`
CXXFLAGS += -Wall -Wformat
CFLAGS = $(CXXFLAGS)
endif
.cpp.o:
$(CXX) $(CXXFLAGS) -c -o $@ $<
@ -50,4 +60,3 @@ $(EXE): $(OBJS)
clean:
rm $(EXE) $(OBJS)