mirror of
https://github.com/swaywm/sway.git
synced 2024-11-05 07:53:13 +00:00
31 lines
437 B
Meson
31 lines
437 B
Meson
sysconfdir = get_option('sysconfdir')
|
|
|
|
executable(
|
|
'swaylock', [
|
|
'main.c',
|
|
'password.c',
|
|
'render.c',
|
|
'seat.c'
|
|
],
|
|
include_directories: [sway_inc],
|
|
dependencies: [
|
|
cairo,
|
|
client_protos,
|
|
gdk_pixbuf,
|
|
libpam,
|
|
math,
|
|
pango,
|
|
pangocairo,
|
|
xkbcommon,
|
|
wayland_client,
|
|
wlroots,
|
|
],
|
|
link_with: [lib_sway_common, lib_sway_client],
|
|
install: true
|
|
)
|
|
|
|
install_data(
|
|
'pam/swaylock',
|
|
install_dir: sysconfdir + '/pam.d/'
|
|
)
|