mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-01 22:58:40 -04:00
Add a window client, first implementation of surface resizing.
This commit is contained in:
parent
2a20d83fdb
commit
61017b190a
2 changed files with 292 additions and 1 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 pointer background
|
||||
clients = flower pointer background window
|
||||
|
||||
all : wayland $(clients)
|
||||
|
||||
|
|
@ -20,6 +20,7 @@ libwayland.so : $(libwayland_objs)
|
|||
flower_objs = flower.o
|
||||
pointer_objs = pointer.o
|
||||
background_objs = background.o
|
||||
window_objs = window.o
|
||||
|
||||
$(clients) : CFLAGS += $(shell pkg-config --cflags cairo)
|
||||
$(clients) : LDLIBS += $(shell pkg-config --libs cairo gdk-pixbuf-2.0) -lrt
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue