Initial swaylock port

This commit is contained in:
Drew DeVault 2018-04-02 22:48:13 -04:00
parent 2c441e5bbc
commit 2d1a44703b
2 changed files with 294 additions and 734 deletions

1010
main.c

File diff suppressed because it is too large Load Diff

18
meson.build Normal file
View File

@ -0,0 +1,18 @@
executable(
'swaylock',
'main.c',
include_directories: [sway_inc],
dependencies: [
cairo,
client_protos,
gdk_pixbuf,
libpam,
math,
pango,
pangocairo,
wayland_client,
wlroots,
],
link_with: [lib_sway_common, lib_sway_client],
install: true
)