mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-09 23:54:20 +00:00
Merge pull request #11 from corpsmoderne/master
Add a quick and dirty makefile to build on linux
This commit is contained in:
commit
64e5c2f127
1 changed files with 18 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue