Skip to content

Commit

Permalink
Merge pull request #24 from skoperst/master
Browse files Browse the repository at this point in the history
Add pure C wayland demo/backend
  • Loading branch information
dumblob committed Dec 13, 2019
2 parents bb7c251 + a88cd06 commit bacdca7
Show file tree
Hide file tree
Showing 3 changed files with 1,297 additions and 0 deletions.
9 changes: 9 additions & 0 deletions demo/wayland_rawfb/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
WAYLAND=`pkg-config wayland-client --cflags --libs`
CFLAGS?=-std=c11 -Wall -Werror -O3 -fvisibility=hidden

hello_wayland: main.c
$(CC) -o demo *.c $(WAYLAND) -lrt -lm


clean:
$(RM) demo

0 comments on commit bacdca7

Please sign in to comment.