Add FTGL dependency and text all the things

This commit is contained in:
2013-02-04 07:31:26 +00:00
parent 35a44308d9
commit 2841c71f7f
12 changed files with 6496 additions and 6 deletions

View File

@@ -1,10 +1,11 @@
CFLAGS := -Wall -O3 -g -D_GNU_SOURCE
LDFLAGS := -lm
CFLAGS += `pkg-config pugl-0 --cflags`
LDFLAGS += `pkg-config pugl-0 --libs`
CFLAGS += `pkg-config ftgl pugl-0 --cflags`
LDFLAGS += `pkg-config ftgl pugl-0 --libs`
PUISRC := container.cpp
PUISRC += label.cpp
PUISRC += knob.cpp
PUISRC += pui.cpp
PUISRC += slider.cpp