Implement PAM password verification in swaylock

This commit is contained in:
Drew DeVault 2015-12-17 08:44:30 -05:00
parent d91185d67b
commit 9c141f0bf1
4 changed files with 282 additions and 0 deletions

View file

@ -4,6 +4,7 @@ include_directories(
${CAIRO_INCLUDE_DIRS}
${GDK_PIXBUF_INCLUDE_DIRS}
${PANGO_INCLUDE_DIRS}
${PAM_INCLUDE_DIRS}
)
add_executable(swaylock
@ -18,6 +19,7 @@ target_link_libraries(swaylock
${CAIRO_LIBRARIES}
${GDK_PIXBUF_LIBRARIES}
${PANGO_LIBRARIES}
${PAM_LIBRARIES}
m
)