mirror of
https://github.com/swaywm/sway.git
synced 2025-12-30 11:08:42 -05:00
Add swaylock subproject
This commit is contained in:
parent
d800d52d37
commit
f80481a37d
3 changed files with 43 additions and 0 deletions
29
swaylock/CMakeLists.txt
Normal file
29
swaylock/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
include_directories(
|
||||
${PROTOCOLS_INCLUDE_DIRS}
|
||||
${WAYLAND_CLIENT_INCLUDE_DIR}
|
||||
${CAIRO_INCLUDE_DIRS}
|
||||
${GDK_PIXBUF_INCLUDE_DIRS}
|
||||
${PANGO_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
add_executable(swaylock
|
||||
main.c
|
||||
)
|
||||
|
||||
target_link_libraries(swaylock
|
||||
sway-common
|
||||
sway-wayland
|
||||
${WAYLAND_CLIENT_LIBRARIES}
|
||||
${WAYLAND_CURSOR_LIBRARIES}
|
||||
${CAIRO_LIBRARIES}
|
||||
${GDK_PIXBUF_LIBRARIES}
|
||||
${PANGO_LIBRARIES}
|
||||
m
|
||||
)
|
||||
|
||||
install(
|
||||
TARGETS swaylock
|
||||
RUNTIME
|
||||
DESTINATION bin
|
||||
COMPONENT runtime
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue