mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-14 17:07:01 +00:00
add a quick and dirty makefile to build on linux
This commit is contained in:
parent
8825545653
commit
e2655d104e
18
examples/opengl_example/Makefile
Normal file
18
examples/opengl_example/Makefile
Normal file
@ -0,0 +1,18 @@
|
||||
#
|
||||
# Quick and dirty makefile to build on Linux
|
||||
# tested on Ubuntu 14.04.1 32bit
|
||||
#
|
||||
|
||||
SRC = main.cpp ../../imgui.cpp
|
||||
|
||||
OBJ = $(SRC:.cpp=.o)
|
||||
|
||||
CXXFLAGS = -I../../ `pkg-config --cflags glfw3`
|
||||
|
||||
LIBS = `pkg-config --static --libs glfw3` -lGLEW
|
||||
|
||||
all: $(OBJ)
|
||||
$(CXX) $(OBJ) $(LIBS)
|
||||
|
||||
clean:
|
||||
$(RM) -f $(OBJ)
|
Loading…
Reference in New Issue
Block a user