mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-23 06:59:47 -05:00
Add a new client that draws a pointer.
This commit is contained in:
parent
e120a4b1ee
commit
5a27f3e6a7
5 changed files with 195 additions and 8 deletions
3
Makefile
3
Makefile
|
|
@ -1,7 +1,7 @@
|
|||
CFLAGS += -Wall -g $(shell pkg-config --cflags libffi libdrm)
|
||||
LDLIBS += $(shell pkg-config --libs libffi libdrm)
|
||||
|
||||
clients = flower
|
||||
clients = flower pointer
|
||||
|
||||
all : wayland $(clients)
|
||||
|
||||
|
|
@ -18,6 +18,7 @@ libwayland.so : $(libwayland_objs)
|
|||
gcc -o $@ $(libwayland_objs) -shared
|
||||
|
||||
flower_objs = flower.o
|
||||
pointer_objs = pointer.o
|
||||
|
||||
$(clients) : CFLAGS += $(shell pkg-config --cflags cairo)
|
||||
$(clients) : LDLIBS += $(shell pkg-config --libs cairo)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue