2014-12-03 17:37:07 +00:00
|
|
|
#
|
2015-03-09 11:25:15 +00:00
|
|
|
# Cross Platform Makefile
|
2017-07-03 02:33:13 +00:00
|
|
|
# Compatible with MSYS2/MINGW, Ubuntu 14.04.1 and Mac OS X
|
2014-12-03 17:37:07 +00:00
|
|
|
#
|
2018-01-28 23:38:00 +00:00
|
|
|
# You will need GLFW (http://www.glfw.org):
|
|
|
|
# Linux:
|
|
|
|
# apt-get install libglfw-dev
|
|
|
|
# Mac OS X:
|
|
|
|
# brew install glfw
|
|
|
|
# MSYS2:
|
|
|
|
# pacman -S --noconfirm --needed mingw-w64-x86_64-toolchain mingw-w64-x86_64-glfw
|
2014-12-03 17:37:07 +00:00
|
|
|
#
|
|
|
|
|
2014-12-07 09:58:45 +00:00
|
|
|
#CXX = g++
|
2018-01-28 23:55:16 +00:00
|
|
|
#CXX = clang++
|
2014-12-03 17:37:07 +00:00
|
|
|
|
2018-06-10 13:42:14 +00:00
|
|
|
EXE = example_glfw_opengl3
|
2018-06-08 17:37:33 +00:00
|
|
|
SOURCES = main.cpp
|
|
|
|
SOURCES += ../imgui_impl_glfw.cpp ../imgui_impl_opengl3.cpp
|
2018-08-28 19:59:14 +00:00
|
|
|
SOURCES += ../../imgui.cpp ../../imgui_demo.cpp ../../imgui_draw.cpp ../../imgui_widgets.cpp
|
2016-10-22 11:36:49 +00:00
|
|
|
OBJS = $(addsuffix .o, $(basename $(notdir $(SOURCES))))
|
2014-12-03 17:37:07 +00:00
|
|
|
UNAME_S := $(shell uname -s)
|
|
|
|
|
2019-04-07 21:02:07 +00:00
|
|
|
CXXFLAGS = -I../ -I../../
|
|
|
|
CXXFLAGS += -g -Wall -Wformat
|
|
|
|
LIBS =
|
|
|
|
|
2018-08-28 13:56:03 +00:00
|
|
|
##---------------------------------------------------------------------
|
|
|
|
## OPENGL LOADER
|
|
|
|
##---------------------------------------------------------------------
|
|
|
|
|
|
|
|
## Using OpenGL loader: gl3w [default]
|
2018-08-04 14:09:56 +00:00
|
|
|
SOURCES += ../libs/gl3w/GL/gl3w.c
|
2019-04-07 21:02:07 +00:00
|
|
|
CXXFLAGS += -I../libs/gl3w
|
2018-08-04 14:09:56 +00:00
|
|
|
|
2018-08-28 13:56:03 +00:00
|
|
|
## Using OpenGL loader: glew
|
|
|
|
## (This assumes a system-wide installation)
|
|
|
|
# CXXFLAGS = -lGLEW -DIMGUI_IMPL_OPENGL_LOADER_GLEW
|
|
|
|
|
|
|
|
## Using OpenGL loader: glad
|
|
|
|
## (You'll also need to change the rule at line ~77 of this Makefile to compile/link glad.c/.o)
|
2018-08-04 14:09:56 +00:00
|
|
|
# SOURCES += ../libs/glad/src/glad.c
|
|
|
|
# CXXFLAGS = -I../libs/glad/include -DIMGUI_IMPL_OPENGL_LOADER_GLAD
|
|
|
|
|
2018-08-28 13:56:03 +00:00
|
|
|
##---------------------------------------------------------------------
|
|
|
|
## BUILD FLAGS PER PLATFORM
|
|
|
|
##---------------------------------------------------------------------
|
2014-12-03 17:37:07 +00:00
|
|
|
|
|
|
|
ifeq ($(UNAME_S), Linux) #LINUX
|
|
|
|
ECHO_MESSAGE = "Linux"
|
2019-04-07 21:02:07 +00:00
|
|
|
LIBS += -lGL `pkg-config --static --libs glfw3`
|
2015-02-27 11:07:23 +00:00
|
|
|
|
2019-04-07 21:02:07 +00:00
|
|
|
CXXFLAGS += `pkg-config --cflags glfw3`
|
2015-02-27 11:19:50 +00:00
|
|
|
CFLAGS = $(CXXFLAGS)
|
2014-12-03 17:37:07 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(UNAME_S), Darwin) #APPLE
|
|
|
|
ECHO_MESSAGE = "Mac OS X"
|
2019-04-07 21:02:07 +00:00
|
|
|
LIBS += -framework OpenGL -framework Cocoa -framework IOKit -framework CoreVideo
|
|
|
|
LIBS += -L/usr/local/lib -L/opt/local/lib
|
|
|
|
#LIBS += -lglfw3
|
|
|
|
LIBS += -lglfw
|
2014-12-03 17:37:07 +00:00
|
|
|
|
2019-04-07 21:02:07 +00:00
|
|
|
CXXFLAGS += -I/usr/local/include -I/opt/local/include
|
2015-02-27 11:19:50 +00:00
|
|
|
CFLAGS = $(CXXFLAGS)
|
2014-12-03 17:37:07 +00:00
|
|
|
endif
|
|
|
|
|
2017-07-02 16:21:24 +00:00
|
|
|
ifeq ($(findstring MINGW,$(UNAME_S)),MINGW)
|
2019-04-07 21:02:07 +00:00
|
|
|
ECHO_MESSAGE = "MinGW"
|
|
|
|
LIBS += -lglfw3 -lgdi32 -lopengl32 -limm32
|
2015-10-04 20:14:35 +00:00
|
|
|
|
2019-04-07 21:02:07 +00:00
|
|
|
CXXFLAGS += `pkg-config --cflags glfw3`
|
|
|
|
CFLAGS = $(CXXFLAGS)
|
2015-10-04 20:14:35 +00:00
|
|
|
endif
|
|
|
|
|
2018-08-28 13:56:03 +00:00
|
|
|
##---------------------------------------------------------------------
|
|
|
|
## BUILD RULES
|
|
|
|
##---------------------------------------------------------------------
|
2015-10-04 20:14:35 +00:00
|
|
|
|
2016-10-22 11:36:49 +00:00
|
|
|
%.o:%.cpp
|
2014-12-03 17:37:07 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c -o $@ $<
|
|
|
|
|
2018-06-08 17:37:33 +00:00
|
|
|
%.o:../%.cpp
|
|
|
|
$(CXX) $(CXXFLAGS) -c -o $@ $<
|
|
|
|
|
2016-10-22 11:36:49 +00:00
|
|
|
%.o:../../%.cpp
|
|
|
|
$(CXX) $(CXXFLAGS) -c -o $@ $<
|
|
|
|
|
|
|
|
%.o:../libs/gl3w/GL/%.c
|
2018-08-04 14:09:56 +00:00
|
|
|
# %.o:../libs/glad/src/%.c
|
2016-10-22 11:36:49 +00:00
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
2015-08-28 15:03:05 +00:00
|
|
|
all: $(EXE)
|
2014-12-03 17:37:07 +00:00
|
|
|
@echo Build complete for $(ECHO_MESSAGE)
|
|
|
|
|
2015-08-28 15:03:05 +00:00
|
|
|
$(EXE): $(OBJS)
|
2016-10-22 11:07:43 +00:00
|
|
|
$(CXX) -o $@ $^ $(CXXFLAGS) $(LIBS)
|
2014-12-03 17:37:07 +00:00
|
|
|
|
|
|
|
clean:
|
2016-10-22 11:02:58 +00:00
|
|
|
rm -f $(EXE) $(OBJS)
|